x = 3
if x == 1:
print(x)
if x == 2:
print(x)
if x == 3:
print(x)
if x > 2:
print(x)
x = 3
if x == 1:
print(x)
elif x == 2:
print(x)
elif x == 3:
print(x)
elif x > 2:
print(x)
@bot.message_handler(commands=['start'])
def start(message):
bot.send_message (message.chat.id, 'Введите название листа: ')
bot.send_message (message.chat.id, 'Введите название листа: ')
import time
from threading import Thread
an = 1
ans = 0
def countdown():
time.sleep (10)
if not ans:
print ('\nВремя вышло!')
global an
an = 0
def answer():
global ans
ans = int(input('Ваш вариант ответа:'))
if ans == 1 and an:
print ('Вы ответили правильно!')
elif ans == 2 and an:
print ('Вы ответили не правильно!')
else:
ans = 3
print ('Вы не ответили')
print ('Газон зеленый')
print ('1 - Правда')
print ('2 - Ложь')
task1 = Thread(target=countdown)
task2 = Thread(target=answer)
task1.start()
task2.start()
function openMenu() {
menu.classList.toggle('active');
}
var menu = document.querySelector('#nav-mob'),
button = document.querySelector('.head-menu-button');
button.addEventListener('click', openMenu);
def func1():
arr = []
num = 0
def func2(v):
nonlocal num
print(num)
num += 1
arr.append(v)
return {'num': num, 'arr': arr}
return func2
f = func1()
print(f(10))
print(f(11))
print(f(12))