第一天
文章来源于廖雪峰的网站,感谢
第一个py脚本 ,进行数值计算
当脚本里面内容为 print(100+200+300) 运行脚本显示为600
当脚本里面内容为print('100+200+300') 运行脚本显示为100+200+300
结论:双括号里面的单引号把数值集成了一个字符串,运行结果显示的是该字符串的内容 ,后面有提到
number=input ('this is a lication computation,please press enter key and then input the number of a and b ')
a = int(input('a= '))
b = int(input('b= '))
print('Ok ,the values is ',a * b)
思考:怎么来根据直接加减乘除来得出数据,这个只是单个的乘法运算。
阅读(1095) | 评论(0) | 转发(0) |