数字:整型 、浮点型 ;
整型关键字 : int ;浮点型关键字 :float ;
布尔值 :bool boolean (True False 首字母大写)
a=10 # 整型 b=10.0 # 浮点数 print(a*20)