Thursday, December 17, 2015

Restart Python Script



Restart Python Script :

python = sys.executable
 os.execl(python, python, * sys.argv)

No comments:

Post a Comment

lvalue vs rvalue

  1. What is an lvalue? An lvalue is an object that: Has an identifiable memory location. Has a name (in most cases). Can appear on th...