Getting help
Last updated
Was this helpful?
Last updated
Was this helpful?
Help
In Python interactive shell: πͺ Code:
help(math.sqrt)
π Output:
* IPython shell:
πͺ Code:
math.cos?
π Output:
* Web: https://docs.python.org/3/
πͺ Code:
import time
help(time.sleep)
π Output:
Help on built-in function sleep in module time:
sleep(...)
sleep(seconds)
Delay execution for a given number of seconds. The argument may be
a floating point number for subsecond precision.