首页 > 其他 > 详细

书本练习题3print函数使用

时间:2019-06-18 00:33:56      阅读:325      评论:0      收藏:0      [点我收藏+]
加减乘除运算练习
• + plus 加号
• - minus 减号
• / slash 斜杠
• * asterisk 星号
• % percent 百分号
• < less-than 小于号
• > greater-than 大于号
• <= less-than-equal 小于等于号
• >= greater-than-equal 大于等于号

print ("I will now count my chickens:")


print (‘hens‘,25+30/6)
print (‘Roosters‘,100-25*3%4)

print ("Now I will count the eggs:")

print (3+2+1-5+4 % 2 - 1 / 4+6)

print ("Is it true that (3+2)<(5-7)")

print (‘What is (3+2)?‘,3+2)
print("What is (5-7)",5-7)

print ("Oh,that‘s why it‘s Faslse.")

print("How about some more.")

print ("Is it greater?",5>-2)
print ("Is it qreater or equal",5>= -2)
print("Is it less or equal",5<= -2)
help("floating")

输出结果:

I will now count my chickens:
hens 30.0
Roosters 97
Now I will count the eggs:
6.75
Is it true that (3+2)<(5-7)
What is (3+2)? 5
What is (5-7) -2
Oh,that‘s why it‘s Faslse.
How about some more.
Is it greater? True
Is it qreater or equal True
Is it less or equal False

 

书本练习题3print函数使用

原文:https://www.cnblogs.com/xilige/p/11042668.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!