Suppose i want to add something to
list = []
such that the value of list gets updated in the code it self. In runtime: list gets modified to
list =['hello','Dude']
How can i do so?
What i mean is, that there are real changes made to the List value in the .py file.