I am very very new to programming and I understand this is quite a dumb question but I'm not sure how to search for the answer to it.
For an assignment, we have been limited to 2 or less global variables.
I'm trying to do this:
for x in range(0,5):
etc, etc
I have tried printing global() and I'm pretty sure this makes x a global variable - is there a way to create a local variable in this case or do I just have to work around it?