White scenery @showyou, hatena

If you have any comments, you may also send twitter @shsub or @showyou.

Entries from 2007-11-20 to 1 day

たわいも無いサンプル

from threading import Thread class TempThread(Thread): def run(self): print('hoge1') print('hoge2') print('hoge3') #for i in range(1000): # pass print('hoge4') print('hoge5') print('hoge6') if __name__=='__main__': t = TempThread() t.start…