Python program to convert a string to title case without using title() function.

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

thank you very much you both brother and sister doing great work....hats off to both of you!!!

siddharth
Автор

a=input("enter the title: ")

b=a.split()

r=''

#print(b)

for i in b:
r=r+i.capitalize()+" "

print(r)

siddharth