python练习题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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练习题的主要内容,如果未能解决你的问题,请参考以下文章

python练习题集合-2

python练习题-20170916

python练习题_04

求循序渐进的python练习题

python练习题

Python练习题