題目001:有四個數字:1、2、3、4,能組成多少個互不相同且無重複數字的三位數?各是多少?
def one():
d=for i in range (1, 5):
for j in range (1, 5):
for k in range (1, 5):
if (i != k) and (i != j) and (j != k):
print("總數量:",len(d))
print(d)
def two():
'''【個人備註】:其實python自帶排列組合模組,可以直接呼叫。
如果這是面試題,能寫出後一種當然好,不能的話還是老老實實的按照上面的思路來吧。
'''from itertools import permutations
for i in permutations ([1, 2, 3, 4], 3):
print (i)
python練習小程式
1.今年是否為閏年 import time thisyear time.localtime 0 print time.localtime if thisyear 400 0 or thisyear 4 0 and thisyear 100!0 print this year s is leap ye...
Python練習題,每天乙個小程式
coding utf 8 import random import string field string.ascii letters string.digits 產生0 9和26個字母的字串 def gen code m code join random.sample field,m 產生長度為2...
Python練習冊,每天乙個小程式(十六)
第 0017 題 將 第 0014 題中的 student.xls 檔案中的內容寫到 student.xml 檔案中,如 下所示 第 0018 題 將 第 0015 題中的 city.xls 檔案中的內容寫到 city.xml 檔案中,如下 所示 第 0019 題 將 第 0016 題中的 numb...