码迷,mamicode.com
首页 > 编程语言 > 详细

Python赋值运算符

时间:2018-05-07 11:07:20      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:赋值运算符   Python   

以下假设变量a为10,变量b为20:

技术分享图片

"=" 的作用是把右边的数值赋值给左边的变量

 

示例1编程实现145893秒是几天几小时几分钟几秒钟?

total = 145893

day = total // (24 * 60 * 60)

hour = (total % (24 * 60 * 60)) // (60*60)

minute = (total % (60 * 60)) // 60

second = total % 60

print("%d秒为%d天,%d小时,%d分钟,%d" % (total, day, hour, minute, second))

技术分享图片

示例2用户依次输入语文、数学、英语分数,输出总分和平均分?

chinese = int(input("请输入语文的分数:"))

maths = int(input("请输入数学的分数:"))

english = int(input("请输入英语的分数:"))

print("本次考试的总分:%.2f,平均分:%.2f" % ((chinese+maths+english),(chinese+maths+english)/3))

技术分享图片







Python赋值运算符

标签:赋值运算符   Python   

原文地址:http://blog.51cto.com/13043937/2113426

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!