in python how to get uppercase and lower case the whole of string:
abc = " I M a SUPER sMART"
mn = abc.lower()
print(mn)
0 Comments