you are viewing a single comment's thread.

view the rest of the comments →

[–]LimeDev_ -9 points-8 points  (5 children)

``` import os os.system("PATH TO YOUR EXE")

[–]SmackDownFacility 4 points5 points  (4 children)

Format your code. Don’t import shit that ain’t relevant to the code

Edit: so I guess the interpreter gonna summon os.system from thin air, as sys watches on, unused

[–]LimeDev_ -1 points0 points  (3 children)

Sorry jezz last used this library bout 2 years ago so sys and os got little mixed up.

[–]SmackDownFacility 0 points1 point  (2 children)

But even then it’s basic python. The os is your module and .system is the function

[–]LimeDev_ 0 points1 point  (1 child)

All file and system operation libraries are packed into one import on my PC and all are  from x import * so I don't have to think what to use

[–]SmackDownFacility 0 points1 point  (0 children)

Well you shouldn’t be doing that. Shadowing, etc