Python3中如何批量赋值给批量生成的变量名?

2024-11-23 23:05:35
推荐回答(1个)
回答1:

这样行不行??
for i in range(len(A)):
B[i] = A[i]