Hi everyone
I have been given a python code to add some functionality in it. The problem am facing is that the original developer has hard coded 3 variables a,b,c in the code and these variables are before class definition in files: hers is the code snippet:
a = 9
b = 9
c = 8 #define the position of the falling objects
class fallObj(DirectObject):
def __init__(self):
#rest of the code goes here
I want the user to input these rather than hard coding them. Please help me.
Thanks