Get help for a method in Python
Advertisements
Syntax
print(help(<your method>))
Example
print(help(str.upper))
Help on method_descriptor: upper(...) S.upper() -> string Return a copy of the string S converted to uppercase. None