练习:平均电费
我们用 Python 尝试运算操作吧!
我在过去三个月的电费是 23 美元、32 美元和 64 美元。这三个月的每月平均电费是多少?请写一个表达式来计算均值,并使用 print() 查看结果。
# Write an expression that calculates the average of 23, 32 and 64.
# Place the expression in this print statement.
print( (23 + 32 + 64) / 3)
练习:计算
在这道练习中,你需要通过编写 Python 程序来帮助一位铺瓦工做一些计算。 地面上有两个区域需要贴砖,其中一个区域的大小为宽 9 块砖,长 7 块砖,另一个区域的大小为宽 5 块砖,长 7 块砖。此外,6块砖头组成一包。 请编写程序计算以下问题:
这位铺瓦工贴完这两个区域一共需要多少块砖?
如果购买 17 包砖,且每包有 6 块砖。铺完两个区域之后,还剩下多少块砖?
# Fill this in with an expression that calculates how many tiles are needed.
print(9*7 + 5*7)
# Fill this in with an expression that calculates how many tiles will be left over.
print( (17 - 6) * 6)
以下哪几行代码格式是合理的?思考一下如何改进看起来格式糟糕且不易读的代码;)
print((17 - 6)%(5 + 2))
print(4/2 - 7*7)