web-dev-qa-db-ja.com

カウントダウンクロック:01:05

独自の行にある00:00(分と秒)のように見えるPythonでカウントダウンクロックを作成するにはどうすればよいですか。1つ減るたびにactualsecondその後、古いタイマーをその行で1秒下の新しいタイマーに置き換える必要があります:01:0000:59になり、実際にヒットします00:00

ここに私が始めたが、変換したい基本的なタイマーがあります:

def countdown(t):
    import time
    print('This window will remain open for 3 more seconds...')
    while t >= 0:
        print(t, end='...')
        time.sleep(1)
        t -= 1
    print('Goodbye! \n \n \n \n \n')

t=3

また、Goodbye!(関数の外にある可能性が高い)の後の行がすべて独自の行にあることを確認したい。

結果:3...2...1...0...Goodbye!

これは他のカウントダウンの質問と似ていますが、独自のひねりがあると思います。

16
trev

時間を分と秒としてフォーマットすることとは別に、carriage returnを出力する必要があります。 end\rに設定します:

import time

def countdown(t):
    while t:
        mins, secs = divmod(t, 60)
        timeformat = '{:02d}:{:02d}'.format(mins, secs)
        print(timeformat, end='\r')
        time.sleep(1)
        t -= 1
    print('Goodbye!\n\n\n\n\n')

これにより、next printが最後に印刷された行を上書きします。

countdown

46
Martijn Pieters

MM:SS形式で01:05から00:00までカウントするコードは次のとおりです。

Python 3:

import time
def countdown(p,q):
    i=p
    j=q
    k=0
    while True:
        if(j==-1):
            j=59
            i -=1
        if(j > 9):  
            print(str(k)+str(i)+":"+str(j), end="\r")
        else:
            print(str(k)+str(i)+":"+str(k)+str(j), end="\r")
        time.sleep(1)
        j -= 1
        if(i==0 and j==-1):
            break
    if(i==0 and j==-1):
        print("Goodbye!", end="\r")
        time.sleep(1)
countdown(1,5) #countdown(min,sec)

Python 2:

import time
def countdown(p,q):
    i=p
    j=q
    k=0
    while True:
        if(j==-1):
            j=59
            i -=1
        if(j > 9):  
            print "\r"+str(k)+str(i)+":"+str(j),
        else:
            print "\r"+str(k)+str(i)+":"+str(k)+str(j),
        time.sleep(1)
        j -= 1
        if(i==0 and j==-1):
            break
    if(i==0 and j==-1):
        print "\rGoodbye!"
        time.sleep(1)
countdown(1,5) #countdown(min,sec)
3
Srivishnu

簡単にするために、このコードは次の希望する時刻までの時間を示しています。これはプログラムで何をしたいのかもしれません。あなたの場合、これは一種のカウントダウンタイマーです。

from datetime import datetime

x=datetime.today()
y=x.replace(day=x.day+1, hour=3, minute=1, second=0, microsecond=0)
delta_t=y-x
secs=delta_t.seconds+1

second = (secs % 60)
minut = (secs / 60) % 60
hour = (secs / 3600)
print ("Seconds: %s " % (second))
print ("Minute: %s " % (minut))
print ("Hour: %s" % (hour))

print ("Time is %s:%s:%s" % (hour, minut, second))

次に、出力は次のようになります。

Seconds: 50 
Minute: 32 
Hour: 12
Time is 12:32:50

コーディングを頑張ってください。

たぶん、このリンクは役立ちます: タイマーの作成Python

そして私の答えを見てください、それはあなたにも同じです!

とにかく、ここに答えがあります:

import time
import os
hour = int(input('Enter any amount of hours you want -+==> '))
minute = int(input('Enter any amount of minutes you want -+==> '))
second = int(input('Enter any amount of seconds you want -+==> '))
time = hour*10800 + minute*3600 + second*60
print('{}:{}:{}'.format(hour,minute,second))
while time > 0:
   time = time - 1
   seconds = (time // 60) % 60
   minutes = (time // 3600)
   hours = (time // 10800)
   print('Time Left -+==> ',hours,':',minutes,':',seconds,)
   os.system("CLS")
if time == 0:
   print('Time Is Over!') 

入力:

Enter any amount of hours you want -+==> 0
Enter any amount of minutes you want -+==> 0 
Enter any amount of seconds you want -+==> 10

出力番号はすべて同じ行にあります

Time Left -+==> 0:0:10
Time Left -+==> 0:0:9
Time Left -+==> 0:0:8
Time Left -+==> 0:0:7
Time Left -+==> 0:0:6
Time Left -+==> 0:0:5
Time Left -+==> 0:0:4
Time Left -+==> 0:0:3
Time Left -+==> 0:0:2
Time Left -+==> 0:0:1
Time Left -+==> 0:0:0
Time Is Over!
0
Ultra Gamer
import time
import sys

print(' ')
print('Countdown Timer, By Adam Gay')
print(' ')
print('Instructions: Input time to countdown from.')
print(' ')

c=':'

hourz=input('Hours: ')
minz=input('Minutes: ')
secz=input('Seconds: ')
print(' ')

hour=int(hourz)
min=int(minz)
sec=int(secz)

while hour > -1:
    while min > -1:
        while sec > 0:
            sec=sec-1
            time.sleep(1)
            sec1 = ('%02.f' % sec)  # format
            min1 = ('%02.f' % min)
            hour1 = ('%02.f' % hour)
            sys.stdout.write('\r' + str(hour1) + c + str(min1) + c + str(sec1))

        min=min-1
        sec=60
    hour=hour-1
    min=59

Print('Countdown Complete.')
time.sleep(30)
0
adam gay