Home / Questions / Other Threading में thread कैसे बनाते हैं? Other 0 Views Verified Threading में thread कैसे बनाते हैं? #python #sqlite #sql #backend #automation #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified Correct Answer from threading import Thread Thread(target=worker).start() from threading import Thread Thread(target=worker).start() Additional Explanation threading.Thread target callable accept करता है।
Verified Thread.run(worker) only Thread.run(worker) only Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified thread.create(worker) thread.create(worker) Additional Explanation यह विकल्प सही समाधान नहीं है।