这玩意儿也要库?for i in range(1, 10): for j in range(0, 10): if i == j: continue else: print("%d%d%d%d" % (i, i, j, j))
这玩意儿也要库?