execute command in python script
import os
os.system("ma Commande")
#Exemple:
os.system("cd Documents")
execute command in python script
import os
os.system("ma Commande")
#Exemple:
os.system("cd Documents")
python run function in subprocess
# no, we can't use subprocess module for that
import multiprocessing
import time
def task(*args):
print("wait")
time.sleep(2)
print(*args)
print("finished")
if __name__ == "__main__":
# child process has different __name__
process = multiprocessing.Process(target=task, args=(69, 66))
# args must be pickable
# Pickable objects https://docs.python.org/3/library/pickle.html#what-can-be-pickled-and-unpickled
process.start()
process.join() # make sure this gets executed only after process starts
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us