AllenObserver

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::
# 变量的命名和使用:
# 变量名只能包含字母、数字、下划线,只能以下划线和字母开头;
# 变量名不能包含空格;
# 不要将函数名和关键字作为变量名;
# 变量名应该即简短又具有描述性;
message = "hello python world!" 
print(message) 
message = "hello python crash course world!" 
print(message)

 

posted on 2017-03-24 16:10  AllenObserver  阅读(121)  评论(0)    收藏  举报