For example, can we execute the following script
a = 4
b = 3
k = 4 * c
c = a + b
print k
without getting a name error(since c is defined in the 4th line but called for in the 3rd line) i.e. first the 4th line should get executed then the third.
a = 4
b = 3
k = 4 * c
c = a + b
print k
without getting a name error(since c is defined in the 4th line but called for in the 3rd line) i.e. first the 4th line should get executed then the third.
Comment