从Hello World 开始
编写第一个程序
第一个显示"Hello World"的程序代码,我们在交互式模式下运行(也可以叫Python shell)。
C:\>Python
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> "Hello World"
‘Hello World‘
>>> _
‘Hello World‘
在Python中被单引号(‘)、双引号(")、三引号("""/‘‘‘)引起来的文字,是程序中的一个字符串。
"_"代表了互动环境中上一次的运行结果,方便用户在下一次运行中直接引用上一次的运行结果。
Python的关键字
D:\dve\project_github_pytest>Python -q
>>> import keyword
>>> keyword.kwlist
[‘False‘, ‘None‘, ‘True‘, ‘and‘, ‘as‘, ‘assert‘, ‘async‘, ‘await‘, ‘break‘, ‘class‘, ‘continue‘, ‘def‘, ‘del‘, ‘elif‘, ‘else‘, ‘except‘, ‘finally‘, ‘for‘, ‘from‘, ‘global‘, ‘if‘, ‘import‘, ‘in‘, ‘is‘, ‘lambda‘, ‘nonlocal‘, ‘not‘, ‘or‘, ‘pass‘, ‘raise‘, ‘return‘, ‘try‘, ‘while‘, ‘with‘, ‘yield‘]