002 变量和简单的数据类型_variable.py
# 变量的命名和使用:# 变量名只能包含字母、数字、下划线,只能以下划线和字母开头;# 变量名不能包含空格;# 不要将函数名和关键字作为变量名;# 变量名应该即简短又具有描述性;message = "hello python world!" print(message) message = "hello python crash course world!" p...