Python#Timer 2018/1/19 Python, 勉強 time モジュールのsleepを使って1秒のDelayを作ります。 from time import sleep as timer while True: print('data starting to count...') timer(1) print('1 seconds...') それじゃねー