Python Programs | IT Developer
IT Developer

Python Programs



Share with a Friend

Python Programs - String

Convert all characters in a string to Uppercase - Python Program

Example 1 :

text = "hello world" print(text.upper())

Output

 
OUTPUT  :
HELLO WORLD