1.python环境安装和配置
2.git安装
3.python ide代码编辑器,如pyCharm
1.整型
2.浮点型
3.字符串
4.列表 list set
5.字典 map
6.自定义类型 class
1.+ - * / %
2.and or
1.print
2.input
整型(int,long) %d
浮点型(float,double) %f %g
字符串(string) %s
其他类型(list,map) 通过str()函数把q它转换为字符串再%s打印
转换为整型 int()
转换为字符串 str()
以此类推
if score > 90:
print('A')
elif score > 80:
print('B')
else:
print('B')
for elem in list:
print(elem)
a = 1
b = 3
while a < b:
print('a < b')
a++;