Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Challange-1 #24

Merged
merged 3 commits into from
Oct 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions Challenge questions/Hemant-60/c1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
def print_without_spaces(some_str):
flag = 0
other_str=""
for i in some_str:
if flag == 0 and i!=" ":
other_str+=i
elif i==" ":
flag=1
elif flag==1 and i!=" ":
flag=0
i=i.upper()
other_str+=i

return other_str
def print_with_spaces(some_str):
flag=0
other_str=""
for i in some_str:
if i>="A" and i<="Z":
flag=1

if flag==0 and i!=" ":
other_str+=i


if flag == 1:
i=i.lower()
flag=0
other_str+=" "
other_str+=i

other_str = other_str[1].capitalize()+other_str[2:]

return other_str


some_str=input("Enter the string : ")
some_str=print_without_spaces(some_str)
print(some_str)
print(print_with_spaces(some_str))