What is the difference between Thread and Threading in python

Asked

Viewed 24 times

0

I’m using Python 3.7.x

When I call a thread through the command:

t = Thread(target=....

In VS Code shows the thread list in CALL STACK (Call Stack) and runs normal.

But when I call through command:

t = threading.Thread(target=....

It also runs normal but does not show in the CALL STACKS list (Call Stack)

What is the difference of these two forms and pq one shows in the CALL STACKS list and another not?

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.