标签:python 练习
题目一:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
代码:
nums=0
for a in range(1,5):
for b in range(1,5):
for c in range(1,5):
if a !=b and b != c and a != c:
nums+=1
print "3 num is :",a,b,c
print "总共是%s组" %nums
本文出自 “Linux天地” 博客,请务必保留此出处http://tianbright.blog.51cto.com/6682167/1760039
标签:python 练习
原文地址:http://tianbright.blog.51cto.com/6682167/1760039