In [1]:
my_string="python"

In [3]:
print help(my_string.upper)


Help on built-in function upper:

upper(...)
    S.upper() -> string
    
    Return a copy of the string S converted to uppercase.

None

In [ ]: