“таймер” Ответ

таймер

get back to working and dont procrastinate
Lazy Leopard

таймер

It's the most important thing, use it wisely <3
Devil Lucifer

таймер

import time
def converter(hours, minutes, seconds):
  return hours * 3600 + minutes * 60 + seconds
time.sleep(converter(hrs, mins, secs))
print("time's up")
HellishBro

таймер

import time
length = int(input('How many seconds: '))
time.sleep(length)
print('Time is up')
Quaint Quoll

таймер

action script
Moha BIBI

таймер

DEZ NUTS
Distinct Dugong

таймер

Rubik's cube:
First place: 4m 26s 08 
Wicked Wolf

таймер

const oldDate = Date.parse("4/10/2020, 12:00:00");

const timeBetweenDates = (date1, date2) => {
  const date = new Date(date1 - date2);
  return {
    years: date.getYear() - 70,
    months: date.getMonth(),
    days: date.getDay(),
    hours: date.getHours(),
    minutes: date.getMinutes(),
    seconds: date.getSeconds(),
  }
}

const pre = document.getElementById("display");
setInterval(() => {
  pre.textContent = JSON.stringify(timeBetweenDates(Date.now(), oldDate), 0, 2);
}, 1000);
Thoughtful Turkey

таймер

TIME
Grotesque Gazelle

таймер

# Python code to make timer
from time import sleep

delay = input("How long do you want to set the timer for?  ")
sleep(delay)
print("Times Up!")
RohBot

Ответы похожие на “таймер”

Вопросы похожие на “таймер”

Смотреть популярные ответы по языку

Смотреть другие языки программирования