🌈 搜索
📅  最后修改于: 2022-03-11 14:46:29.425000             🧑  作者: Mango
from itertools import permutations pw = "0123456789" c = permutations(pw, 3) for i in c: print("".join(i))