1.变量的命名(): (1).可以包含数字.字母.下划线‘_’,但只能以字母和下划线‘_’开头,不能以数字开头! (2).变量的命名不能包含空格. (3).不能将python中的关键字(reserve words)用来命名: 关键字如下: False class finally is return True continue for lambda try None def from not while and del global or with…
第一章 Python基础变量定义规则:1.变量名只能是字母数字或者下划线的任意组合2.变量名的第一个字符不能是数字3.关键字不能申明为变量名定义方式:1.驼峰体AgeOfSzp2.下划线隔开Age_of_Szp(推荐用第二种下划线隔开的方式)变量:会变化的量程序员约定俗成用变量名全部大写表示常量'''# name=input('what is your name ?')# print('hell0,'+name)####格式化输出# name=input('please input your n…