如何在 python 中的多行中获取多个输入

How to take multiple input in multiple line in python

我必须在多行中接受多个输入

例如

n=int(input())

我必须在 n 行中接受 n 个输入,并且每行接受多个输入

if n=5
then I have to take 5 input in 5  line
a=[1,2,3]
b=[1,2,3]
c=[1,2,3]
d=[1,2,3]
e=[1,2,3]

这只是一个例子

这就是您需要的...

n = int(input())
for i in range(n):
    exec(input())
print(a, b, c, d, e)