Python练习题问题如下:
简述:这里有四个数字,分别是:1、2、3、4
提问:能组成多少个互不相同且无重复数字的三位数?各是多少?
for bai in range(1,5): for shi in range(1,5): for ge in range(1,5): if bai!=shi and bai!=ge and shi!=ge: print(bai,shi,ge) else: continue
Posted xusuns
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python数学计算,编程练习题实例一相关的知识,希望对你有一定的参考价值。
Python练习题问题如下:
简述:这里有四个数字,分别是:1、2、3、4
提问:能组成多少个互不相同且无重复数字的三位数?各是多少?
for bai in range(1,5): for shi in range(1,5): for ge in range(1,5): if bai!=shi and bai!=ge and shi!=ge: print(bai,shi,ge) else: continue
以上是关于Python数学计算,编程练习题实例一的主要内容,如果未能解决你的问题,请参考以下文章