Example & Tutorial understanding programming in easy ways.

How do you convert the string in all uppercase in Python ?

We can do this by upper() function 

like:

s="mystring"

s.upper()

// it will return "MYSTRING"

Read More →