gpt4 book ai didi

python - 使用循环创建和分配多个变量 (Python)

转载 作者:太空宇宙 更新时间:2023-11-04 08:00:04 25 4
gpt4 key购买 nike

<分区>

我希望使用 for 循环创建多个变量,在迭代 (i) 中命名,并为每个变量分配一个唯一的 int。

Xpoly = int(input("How many terms are in the equation?"))


terms={}
for i in range(0, Xpoly):
terms["Term{0}".format(i)]="PH"

VarsN = int(len(terms))
for i in range(VarsN):
v = str(i)
Temp = "T" + v
Var = int(input("Enter the coefficient for variable"))
Temp = int(Var)

正如你在最后看到的,我迷路了。理想情况下,我正在寻找输出

T0 = #
T1 = #
T... = #
T(Xpoly) = #

有什么建议吗?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com