Last updated 2 years ago
Was this helpful?
Help
In Python interactive shell: ๐ช Code:
help(math.sqrt)
๐ Output:
* IPython shell:
๐ช Code:
math.cos?
* Web: https://docs.python.org/3/
import time help(time.sleep)
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.