10 lines
138 B
Python
10 lines
138 B
Python
import os
|
|
import os.path
|
|
import sys
|
|
|
|
python = sys.executable
|
|
|
|
while True:
|
|
code = os.system('python msw.py')
|
|
if code:
|
|
break |