【python】题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
摘要:
# encoding:utf-8 # p001_1234threeNums.py def threeNums(): '''题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?''' print None count = 0 nums = [] for index1 in 阅读全文
posted @ 2016-01-23 19:49 gaopq 阅读(10957) 评论(0) 推荐(0) 编辑