Example & Tutorial understanding programming in easy ways.

How do you convert the string in all lowercase ?

We can do this by lower() function 

like:

s="MyString"

s.lower()

// it will return the "mystring"

Read More →