“Jak zrobić zegar za pomocą Pythona” Kod odpowiedzi

Timer Python

import time					
tic = time.perf_counter() # Start Time
your_program() 			  # Your code here
toc = time.perf_counter() # End Time
# Print the Difference Minutes and Seconds
print(f"Build finished in {(toc - tic)/60:0.0f} minutes {(toc - tic)%60:0.0f} seconds")
# For additional Precision
print(f"Build finished in {toc - tic:0.4f} seconds")
Trained Tuna

Timer Python

import time
start = time.time()
# do something
duration = time.time() - start
just-saved-you-a-stackoverflow-visit

Python Timer ()

def hello():
    print "hello, world"

t = Timer(30.0, hello)
t.start() # after 30 seconds, "hello, world" will be printed
Elyesc4

Timer Python

import time
timer_length = float(input("How many seconds would you like you're timer to be set for? "))
time.sleep(timer_length)
print("Done!")
Valorous Vizier

Jak zrobić zegar za pomocą Pythona

# The simplest way to create a timer is to use time.sleep and winsound
import winsound
min_time = int(input('How much time do you want set the timer to (in minutes)'))
sec_time = min_time * 60 
time.sleep(sec_time)
#Now for the sound, I'll use winsound.beep. You can use whatever you want
# Frequency is hoiw high or low pitched the sound to be (It's measured in Hz)
frequency = 500
# Duration is measured in milliseconds here. 1 second = 100 milliseconds
duration = 100
# I want it to beep 5 times, so I'll create a for loop.
for i in range(0,5):
    winsound.Beep(frequency,duration)
Black Fang 666

Odpowiedzi podobne do “Jak zrobić zegar za pomocą Pythona”

Pytania podobne do “Jak zrobić zegar za pomocą Pythona”

Więcej pokrewnych odpowiedzi na “Jak zrobić zegar za pomocą Pythona” w Python

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

Przeglądaj inne języki kodu