1.变量赋值与语句 #python 不需要手动指定变量类型.不需要分号 #To assign the value 365 to the variable days,we enter the variable name, add an equals sign(=) days=365 2.输出 print() 1 #print(),python3中,必须加括号. 2 number_of_days = 365 3 print('Hello python') 4 print(number_of_days…