码迷,mamicode.com
首页 > 编程语言 > 详细

Python 百例--001

时间:2016-09-12 18:43:53      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

题目:有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.py
13 123
14 124
15 132
16 134
17 142
18 143
19 213
20 214
21 231
22 234
23 241
24 243
25 312
26 314
27 321
28 324
29 341
30 342
31 412
32 413
33 421
34 423
35 431
36 432
37 [root@PythonPC test100]# 

 

Python 百例--001

标签:

原文地址:http://www.cnblogs.com/www1707/p/5865409.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!