02.语言元素
1、华氏度转摄氏度
huashidu = float(input('请输入华氏度:')) sheshidu = (huashidu-32)/8 print('摄氏度为{a}'.format(a=sheshidu))
2、输入半径,计算圆的周长和面积
r = float(input('请输入圆的半径:')) zhouchang = 2 * 3.14 * r mianji= 3.14 * r ** 2 print('该圆的周长为{a},面积为{b}'.format(a=zhouchang,b=mianji))
3、输入年份判断是否为闰年
year = int(input('请输入年份: ')) is_leap = year % 4 == 0 and year % 100 != 0 or year % 400 == 0 print(is_leap)