如何在python中同时声明许多变量?

时间:2018-02-21 04:48:57

标签: python variables declare

我是python的初学者,我有一个问题

我定义了一个名为testfunc的函数,如下面的

def testfunc(num) :
    result = num ** 2
    return result

这只是为了测试,所以我做了非常简单的功能

我想申报许多变数。

x1 = testfunc(1)
x2 = testfunc(2)
x3 = testfunc(3)
像这样......

如果有一些变量,我可以写下所有这些变量。

但是如果有很多变数怎么样? (约1000或100000)

有没有什么好方法可以使用循环声明许多变量?

0 个答案:

没有答案