Python Programs | IT Developer
IT Developer

Python Programs



Share with a Friend

Python Programs - String

Capitalize the first letter of each word - Python Program

Example 1 :

text = "python programming language" print(text.title())

Output

 
OUTPUT  :
Python Programming Language