Skip to content
Advertisement

Local variable referenced before assignment python error

I have this code which needs to be plotted perfectly. I’m new to python. The error is as mentioned above. Any kind of help would be appreciated.

JavaScript

Advertisement

Answer

it will say

JavaScript

since you have assigned something to rt rt=rot[i], rt is recognized as a local variable then. If you want to make it global, make it global explicitly using global rt:

JavaScript

note that even if the assignment is not executed, the intepreter will still see assigned var as local:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement