Last updated 2 years ago
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.