Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import glob, importlib
  2.  
  3. for file in glob.iglob("*.py"):
  4. importlib.import_module(file)
  5.  
  6. import glob, os
  7.  
  8. for file in glob.iglob("*.py"):
  9. os.system(file)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement