首页 > 编程语言 > 详细

python的命名和帮助命令查看关键字

时间:2021-04-10 16:29:51      阅读:29      评论:0      收藏:0      [点我收藏+]

1、python的命名只能用字母、下划线、数字命名【注意:数字不能作为开头】

2、help():

>>> help()

Welcome to Python 3.6‘s help utility!

If this is your first time using Python, you should definitely check out
the tutorial on the Internet at https://docs.python.org/3.6/tutorial/.

Enter the name of any module, keyword, or topic to get help on writing
Python programs and using Python modules. To quit this help utility and
return to the interpreter, just type "quit".

To get a list of available modules, keywords, symbols, or topics, type
"modules", "keywords", "symbols", or "topics". Each module also comes
with a one-line summary of what it does; to list the modules whose name
or summary contain a given string such as "spam", type "modules spam".

help> keywords

Here is a list of the Python keywords. Enter any keyword to get more help.

False def if raise
None del import return
True elif in try
and else is while
as except lambda with
assert finally nonlocal yield
break for not
class from or
continue global pass

help>quit

>>>

python的命名和帮助命令查看关键字

原文:https://www.cnblogs.com/ciscolee/p/14640647.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!