R
Ray
class Test:
def __init__(self):
self.value=0
def change(self, val):
self.value=val
if __name__=='__main__':
for x in range(10):
x=Test()
"""
the question is how do i call x.value outside of that for loop?
something like
print x.value ?
"""
thanks for any help.
def __init__(self):
self.value=0
def change(self, val):
self.value=val
if __name__=='__main__':
for x in range(10):
x=Test()
"""
the question is how do i call x.value outside of that for loop?
something like
print x.value ?
"""
thanks for any help.