码迷,mamicode.com
首页 > 其他好文 > 详细

1、完整温度转换,2、数字游戏,3、身份证号解析,4、字符串,5、for循环产生网址

时间:2018-09-13 22:39:14      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:com   输入   \n   华氏温度   new   女孩   span   while   inpu   

while True:
    a=int(input(摄氏温度转华氏温度请按1\n华氏温度转摄氏温度请按2:\n))
    if a == 1:
        celsius = float(input(输入摄氏温度:))
        fahrenheit = (celsius * 1.8)+32
        print({:.2f}摄氏温度转为华氏温度为{:.2f}.format(celsius,fahrenheit))
    elif a == 2:
        fahrenheit = float(input(输入华氏温度:))
        celsius = 5/9*(fahrenheit - 32)
        print({:.2f}华氏温度转为摄氏温度为{:.2f}.format(fahrenheit,celsius))
    else:
        break

技术分享图片

 

n=14
a=-1
while (a!=n):
    a=int(input(请输入年龄:))
    if a==n:
        print(恭喜你答对了)
    elif a>n:
        print(很遗憾你猜大了)
    else:
        print(很遗憾你猜错了)

技术分享图片

 

s=441481199710011589
age=2018-int(s[6:10])
print(年龄:+str(age))
if int(s[-2]) % 2 == 0:
    sex ="女孩"
else:
    sex ="男孩"
print("性别:"+sex)
a=s[:2]
print(省编号:+a)
b=s[2:4]
print(市编号:+b)

技术分享图片

 

a=asdfghjk
for c in a:
    print(c)

技术分享图片

 

 

for i in range(4,10,3):
    print(https://news.gzcc.cn/html/xiaoyuanxinwen/{}.html.format(i))

技术分享图片

 

1、完整温度转换,2、数字游戏,3、身份证号解析,4、字符串,5、for循环产生网址

标签:com   输入   \n   华氏温度   new   女孩   span   while   inpu   

原文地址:https://www.cnblogs.com/h000/p/9643343.html

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