Is there any other method in Python that can change a string to a variable? For example, I have some variables named button1, button2, button3, etc. I want to operate on them in a loop. If I don't want to use eval, anything else suitable?
|
There's e.g.:
Having said that, it's probably a better idea to just put the buttons in a dictionary in the first place. |
|||||||
|
|
This isn't what you asked, but what is wrong with:
|
|||
|
|
|
The
When you're using If you want to manipulate the properties of an object, you can use
EDIT: As DSM pointed out, using |
||||
