2/24

zy05 / 2024-11-17 / 原文

s1 = [str(x) for x, y in zip(['v'] * 4, range(1, 5))]
s2 = list(zip('abcd', range(4)))
print(s1); print(s2)