Can you somehow do this to variables? (variables embeded inside other variables) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can you somehow do this to variables? (variables embeded inside other variables)

As in: x= 1 n= 0 while x <= 10 x= 5x+2 print(x) x(n)= x #Litterally, what I want to do, is assign the value I get each time to a different variable... Is that possible? Btw, this code is purposefully incorrect, because I do not know how to 'do it'. x+= 1 n+= 1 #Then, is there a way to sum up all those variables created? print(sum(x(n))) Thank you everyone, I hope you understand what I mean, and can help me.

17th Feb 2018, 8:34 PM
Martin
2 Answers
+ 5
I think what you are looking for is a list, so you can pass multiple arguments to it. Try the following: x = [] n = 0 while n <= 10: x.append(n * 5 + 2) print(x[n]) n += 1 print(x) print(sum(x)) Is that what you meant?
17th Feb 2018, 9:41 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
0
Yes, near perfect. I’ve just read in to it, thanks.
19th Feb 2018, 4:36 PM
Martin