博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
9.13 作业
阅读量:5156 次
发布时间:2019-06-13

本文共 1044 字,大约阅读时间需要 3 分钟。

1.温度转换

while True:    a = int(input("华氏转摄氏,请按1\n 摄氏转华氏,请按2\n"))    if a==1:        # 用户请输入摄氏温度        c = float(input("请输入华氏温度"))        # 计算华氏温度        d = (c*1.8)+32        # 向用户输出华氏温度        print("{}华氏温度是{}摄氏度".format(c,d))    elif a==2:        d1 = float(input("请输入摄氏温度"))        c1=(d1-32)*5/9        print("{}摄氏温度是{}华氏度".format(d1,c1))    else:        break;

 

 

2.猜数字游戏

import randoma = random.randint(10,50)n = input('请输入数字')if n.isdigit():    n = int(n)    if n==a:        print('猜对了')    elif n>a:        print('你猜的数字大了')    else:        print('你猜的数字小了')    print('这个数是:',a)else:    print('你输入的不是数字')

3.身份证解析

myid = '440100199703250024'address= myid[0:6]bir = myid[6:14]sex=myid[14:17]age= 2018-int(myid[6:10])if int(myid[-2])%2 == 0:    sex = 'girl'else:    sex = 'boy'print('省市{}'.format(address))print('出生年月{}'.format(bir))print('性别{}'.format(sex))print('年龄{}'.format(age))

 

5.用for循环产生一系列网址

for i in range(1,100):    print('http://news.gzcc.cn/html/xiaoyuanxinwen/{}.html'.format(i))

 

转载于:https://www.cnblogs.com/844115-l/p/9639624.html

你可能感兴趣的文章
WinPE作为启动硬盘
查看>>
一个销售精英拜访客户的6大绝招,胜过10次培训,实用!
查看>>
LOJ#6284. 数列分块入门 8
查看>>
NEFU_117素数个数的位数
查看>>
AX2009 的EP开发要点
查看>>
usrp-B210
查看>>
Python进阶:并发编程之Asyncio
查看>>
1.栈溢出的利用
查看>>
C# RSACryptoServiceProvider加密解密签名验签和DESCryptoServic
查看>>
HDU 6178 Monkeys
查看>>
Exceptions, Catch, and Throw(Chapter 10 of Programming Ruby)
查看>>
Abstract Factory(Chapter 5 of Pro Objective-C Design Patterns for iOS)
查看>>
SVN错误:Attempted to lock an already-locked dir及不能提交.so文件
查看>>
Oracle sessions,processes 和 transactions 参数 关系 说明
查看>>
ES6中的新特性
查看>>
前端QRCode.js生成二维码(解决长字符串模块和报错问题)
查看>>
CGI、FastCGI和php-fpm的概念和区别
查看>>
spring test---restful与文件上传
查看>>
poj1161Post Office【经典dp】
查看>>
Kolya and Tandem Repeat
查看>>