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

Python数学计算,编程练习题实例一

时间:2018-01-07 00:41:35      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:size   重复   个数   log   python   python练习   for   编程   and   

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数学计算,编程练习题实例一

标签:size   重复   个数   log   python   python练习   for   编程   and   

原文地址:https://www.cnblogs.com/xusuns/p/8215580.html

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