Python习题100例
2019-03-10 11:58:11来源:博客园 阅读 ()
格式
实例1
count = 0 for i in range( 1 , 5 ) : for j in range( 1 , 5 ) : for k in range( 1 , 5 ) : if i != j and j != k and k != i : print(i,j,k) count += 1 print(count)
==== 1 2 3 1 2 4 1 3 2 1 3 4 1 4 2 1 4 3 2 1 3 2 1 4 2 3 1 2 3 4 2 4 1 2 4 3 3 1 2 3 1 4 3 2 1 3 2 4 3 4 1 3 4 2 4 1 2 4 1 3 4 2 1 4 2 3 4 3 1 4 3 2 24
实例2
i = int (input('请输入当月利润I(单位/万元):')) arr = [100,60,40,20,10] rat = [0.01,0.015,0.03,0.075,0.1] r = 0 for j in range(0,5): if i > arr [j]: r += ( i - arr[j] ) * rat[j] print ((i-arr[j])*rat[j]) i=arr[j] print (r)
请输入当月利润I(单位/万元):120 0.2 0.6 0.6 1.5 1.0 3.9
实例3
for i in range(1,85): if 168 % i == 0: j = 168 / i; if i > j and (i + j) % 2 == 0 and (i - j) % 2 == 0 : m = (i + j) / 2 n = (i - j) / 2 x = n * n - 100 print(x)
-99.0 21.0 261.0 1581.0
实例4
year = int(input ("请输入年份:")) mon = int(input ("请输入月份:")) day = int(input ("请输入日期:")) #非闰年每月末是第几天 months = (0,31,59,90,12,151,181,212,243,273,304,334) sum = 0 #判断闰年 if (year % 400 == 0) or ((year % 4 == 0) and (year % 100 != 0)): if mon > 2 : sum = 1 if 0 < mon <= 12 : sum = months[mon-1] + day + sum print("这是第%d天。"%sum)
==== 请输入年份:2015 请输入月份:6 请输入日期:7 这是第158天。
实例5
l = [] for i in range (0,3): l.append(int(input('integer:'))) l.sort() print(l)
==== integer:6 integer:5 integer:7 [5, 6, 7]
原文链接:https://www.cnblogs.com/xiasheng0701/p/10505127.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash