Maybe this is pretty simple but seems I am stuck... def message_function(): return "HelloWorld!"
def thread_maker(): """ call message_function() using a new thread and return it's "HelloWorld!" """ pass Could someone please complete above script so that: thread_maker() == "HelloWorld!" Please import the library you suggest too. I tried threading but I could not make it work. THX! -- https://mail.python.org/mailman/listinfo/python-list