摘要:
numberList=[1,2,3,4]complexList=[]def permutationNum(): for i in numberList: for j in numberList: for k in numberList: if i!=j and k != j and i!=k: co 阅读全文
摘要:
思路:这题主要使用list.sort()的方法排列,首先要保证用户输入的数字一定是整数,如果不是整数需要提示用户输入错误,重新输入。(使用try函数,对ValueError错误提示) 代码如下: Python # -*- coding: utf-8 -*- while True: try: x = 阅读全文