Newbie question: How can I print a variable's current value at the moment when it is called, instead of getting its old value when it was first defined?
epoch = int(time.time()*1000)
print epoch
time.sleep(2)
print epoch # it should now be 2 seconds larger, but isn't.
You'd have to make a function for that. Something like this should suffice?
You could also encase this into a class and make a
@property
out of it, so that you can get a value without using brackets()