Quiz Catalog

Catalog of quizzes

import threading

def run(message):
  print(message)

msg = "Hello, World"
th = threading.Thread(target=run, args=(msg))

th.start()
th.join()
TypeError: run() takes 1 positional argument but 12 were given
  • thread/parameter/args