摘要: Python练习题问题如下:简述:这里有四个数字,分别是:1、2、3、4提问:能组成多少个互不相同且无重复数字的三位数?各是多少? for bai in range(1,5): for shi in range(1,5): for ge in range(1,5): if bai!=shi and bai!=ge and shi!=ge: ... 阅读全文
posted @ 2018-01-06 22:34 xusuns 阅读(1889) 评论(0) 推荐(0) 编辑
摘要: 12.编写一个函数,接受顾客要在三明治中添加一系列食材,只有一个形参,打印一条消息,对顾客点的三明治进行概述,调用函数三次 每次都提供不同数量的实参。 13.创建函数,接收键值对 14.函数的导入,没弄明白 阅读全文
posted @ 2018-01-06 20:49 xusuns 阅读(110) 评论(0) 推荐(0) 编辑
摘要: s=1while True: usr=input('>>') if usr=='': if s%10==7 or s//10==7 or s%7==0: s += 1#之前放到了continue后面了 结果变成了死循环 continue else: print(s,end='') ... 阅读全文
posted @ 2018-01-06 16:36 xusuns 阅读(145) 评论(0) 推荐(0) 编辑