In Tkinter how can I get and set the values gotten as result of iteration using the fuction "for x in range()". In the followin example the variable "sum" executes and operationg with the multiple results of "suma", I can print them, but how I direct them to specific variables if they are all named the same ("sum")?
min = 10
inc = 10
max = 40
for i in range(min,max,inc):
sum = min + i
print(sum)
Edition: I meant to say to collect the different values of "sum" and set them to either a label or entry, since I have to set the variable to show but that variables carries the same name, with different value for each iteration, though