导语:
本文主要介绍了关于python如何查找在线帮助?的相关知识,包括python 查找字符串,以及如何用python查找资料这些编程知识,希望对大家有参考作用。
使用python时,需要查看一些简单命令的含义和用法,直接help(command)即可。
示例:
>>>help(input)
Help on built-in function input in module builtins:
input(prompt=None, /)
Read a string from standard input. The trailing newline is stripped.
The prompt string, if given, is printed to standard output without a
trailing newline before reading input.
If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError.
On *nix systems, readline is used if available.
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中获取字典的键值10/25
- ♥ 如何在spyder中安装第三方python包09/08
- ♥ 你真的了解python中的None吗?01/08
- ♥ 如何在python中重复打印多次?08/21
- ♥ 如何使用 Python 自动登录?01/03
- ♥ python如何获取字符串的最后一个字符?08/23
内容反馈