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

一、python入门练习题

时间:2019-08-29 12:02:00      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:nbsp   inpu   使用   摄氏度   input   python入门   题目   radius   pre   

题目:

练习1:华氏温度转摄氏温度。

练习2:输入圆的半径计算计算周长和面积。

练习3:输入年份判断是不是闰年。

 

答案:

练习1:

"""
将华氏温度转换为摄氏温度
F = 1.8C + 32
"""

f = float(input(‘请输入华氏温度: ‘))
c = (f - 32) / 1.8
print(‘%.1f华氏度 = %.1f摄氏度‘ % (f, c))

 

练习2:

"""
输入半径计算圆的周长和面积
"""
import math radius = float(input(‘请输入圆的半径: ‘)) perimeter = 2 * math.pi * radius area = math.pi * radius * radius print(‘周长: %.2f‘ % perimeter) print(‘面积: %.2f‘ % area)

 

练习3:

"""
输入年份 如果是闰年输出True 否则输出False
"""

year = int(input(‘请输入年份: ‘))
# 如果代码太长写成一行不便于阅读 可以使用\或()折行
is_leap = (year % 4 == 0 and year % 100 != 0 or
           year % 400 == 0)
print(is_leap)

  

一、python入门练习题

标签:nbsp   inpu   使用   摄氏度   input   python入门   题目   radius   pre   

原文地址:https://www.cnblogs.com/jieperhaps/p/11428318.html

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