1、变量
定义一个变量 会有三个特征 id,type,value
print(id(age),type(age),age)
命名推荐用下划线方式 (尽量用英文 不要过长 意思要明白)
number_of_student
2、常量用大写
3、python3 input 统统返回字符串
python2 input_raw与python3 input一样
input 返回变量名 用户必须输入值 输入什么类型就是什么类型
4、运算符 a//b 地板除 只有整数 3**2 取平方
1、变量
定义一个变量 会有三个特征 id,type,value
print(id(age),type(age),age)
命名推荐用下划线方式 (尽量用英文 不要过长 意思要明白)
number_of_student
2、常量用大写
3、python3 input 统统返回字符串
python2 input_raw与python3 input一样
input 返回变量名 用户必须输入值 输入什么类型就是什么类型
4、运算符 a//b 地板除 只有整数 3**2 取平方