s1 = "life is very easy with python" s2 = "python" print s1 print s1.title() print s2 print s2.title()
Output:
life is very easy with python Life Is Very Easy With Python python Python
s1 = "life is very easy with python" s2 = "python" print s1 print s1.title() print s2 print s2.title()
life is very easy with python Life Is Very Easy With Python python Python
0 comments:
Post a Comment