Shammer's Philosophy

My private adversaria

2015-04-06から1日間の記事一覧

Using Python Thread

Python supports thread execution. This is so similar with Java. Inherit Thread class and override run method Mapping some function to Thread and start that Thread Inherit Thread class #!/usr/bin/env python import threading class MyThread(t…