“Podczas gdy Pętl odliczał Python” Kod odpowiedzi

Jak ustawić timer w pythonie pętli

start_time = time.time()
seconds = input("Enter: ")
seconds = int(seconds)

while True:
    current_time = time.time()
    elapsed_time = current_time - start_time

    if elapsed_time > seconds:
        print("Finished iterating in: " + str(int(elapsed_time))  + " seconds")
        break
Python_Coder

Podczas gdy Pętl odliczał Python

# import the time module
import time
  
# define the countdown func.
def countdown(t):
    
    while t:
        mins, secs = divmod(t, 60)
        timer = '{:02d}:{:02d}'.format(mins, secs)
        print(timer, end="\r")
        time.sleep(1)
        t -= 1
      
    print('Fire in the hole!!')
  
  
# input time in seconds
t = input("Enter the time in seconds: ")
  
# function call
countdown(int(t))
Filthy Flatworm

Podczas gdy Pętl odliczał Python

import time

i = 4
while i > 1:
    i -= 1
    # delay of 1 second.
    time.sleep(1)
    print(i)
# output will be 3, (delay of 1 sec) 2, (delay of 1 sec) 1
Filthy Flatworm

Odpowiedzi podobne do “Podczas gdy Pętl odliczał Python”

Pytania podobne do “Podczas gdy Pętl odliczał Python”

Więcej pokrewnych odpowiedzi na “Podczas gdy Pętl odliczał Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu