zqy220422 当前离线
列兵
狄钦dQ 当前离线
上等兵
TOP
yhcfsr 当前离线
中尉
cfwyy77_bat 当前离线
四级士官
L=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"] ge = ("".join([a,b,c,d,e,f]) for a in L for b in L for c in L for d in L for e in L for f in L) with open("out.txt","wt") as out: for x in ge: out.write(x+",")复制代码
codegay 当前离线
少校
from string import ascii_uppercase as az from itertools import permutations for r in permutations(az,6): t = "".join(r) print(t)复制代码