您现在的位置是:课程教程文章
python如何查找在线帮助?
2023-12-18 18:57课程教程文章 人已围观
在使用python时需要查一些简单命令的含义以及用法,直接help(命令)就行了。
示例:
>>>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知识请关注Python视频教程栏目。
课程教程:python如何查找在线帮助?下一篇:没有了