首页 > 代码库 > Python 百例--001
Python 百例--001
题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
参照:http://www.runoob.com/python/python-exercise-example1.html
1 [root@PythonPC test100]# cat 1.py 2 #!/usr/bin/python 3 # -*- coding=utf-8 -*- 4 5 list=[‘1‘,‘2‘,‘3‘,‘4‘] 6 7 for i in range(4): 8 for j in range(4): 9 for k in range(4):10 if list[i] != list[j] and list[i] != list[k] and list[j] != list[k]:11 print list[i]+list[j]+list[k]12 [root@PythonPC test100]# python 1.py13 12314 12415 13216 13417 14218 14319 21320 21421 23122 23423 24124 24325 31226 31427 32128 32429 34130 34231 41232 41333 42134 42335 43136 43237 [root@PythonPC test100]#
Python 百例--001
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。