本文使用版本python3.8.1,编辑器pycharm。
学习指导书《Python编程——从入门到实践》
1.万恶之首"Hello world"
输入:
print("Hello World")
输出:
Hello World
2.变量
引入一个变量message存储文本的信息“Hello World”,再输出message观察结果。
输入:
message="Hello World"
print(message)
输出:
Hello World
在上述代码后再添加两行代码,使程序变为:
message="Hello World"
print(message)
message="I am PengYuyan"
print(message)
输出:
Hello World
I am PengYuyan
可见,python解释器会一行一行解释每行代码,在程序中可以随时修改变量的值,python会始终记录变量最新的值。
2.1 变量的命名和使用
在python使用变量时,要牢记以下规则:
(1)变量名只能包括字母、数字、下划线,变量的开头只能是字母或下划线,不能是数字。正确示例:pengyuyan_1,错误示例:1_pengyuyan
(2)变量名不能包含空格,但可以使用下划线来分割单词。正确示例:Liuweier_pengyuyan,错误示例:Liuweier pengyuyan
(3)变量名不能与python关键字和函数名重复。输入以下代码可查询有哪些python关键字。
import keyword
print (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']
这些关键字在python语法中有特殊的含义,因此命名变量的时候注意不要与以上关键字重复。个人建议大家全部命名pengyuyan1,pengyuyan2,pengyuyan3......
(4)变量名尽量少使用小写字母l和大写字母O,会容易被人看成是1或0。
Note&