How to Solve NameError: name 'Thread' is not defined -- System

Solution: Import the 'Thread' module

To Solve the error, add the following line to the top of your code.

from System import Thread

 

For more information:
Python System Thread