時間を秒単位で出力する while ループを作成したいと思います。問題は、秒の値が同じ値を何度も出力し続けることです。この値は、ループが実行されたときです。私は基本的に、sec = sec + 1 を使用せずにループで秒数をカウントしたいと考えています。
import time
t = time.gmtime()
def display_seconds(x):
sec = time.strftime('%S',x)
sec = int(sec)
print sec
while True:
display_seconds(t)