Snippets Collections
hour = int(input("Введите время: "))
if (hour >= 8 and hour <= 22) and not (hour <= 15 and hour >= 14) and not (hour >=18 and hour <=20):
  print("Можно получить посылку")
else:
  print("Посылку получить нельзя")
profit = int(input('Введите прибыль:'))
if profit < 10000:
  tax = profit * 13 / 100
  print('Ваш прогрессивый налог (13%):', tax)
elif profit > 50000:
  subtraction = profit - 50000
  tax = subtraction * 30 / 100
  profit2 = subtraction
  tax_3 = profit2 - 10000
  tax_4 = tax_3 * 20 / 100
  profit3 = 10000
  tax_5 = profit3 * 13 / 100
  sum_procent = (tax + tax_4 + tax_5)
  print('Ваш прогрессивый налог (30%):', sum_procent)
else:
  profit < 50000
  tax = profit - 10000
  tax2 = tax * 20 / 100
  profit_2 = 10000
  tax3 = profit_2 * 13 / 100
  sum_procent = tax2 + tax3
  print('Ваш прогрессивый налог (20%):', sum_procent)
price = int(input('Введите стоимость квартиры: '))
metr = int(input('Введите метраж квартиры: '))
i = 0
if price <= 10 and metr >= 100:
    i+= 1
if price <= 7 and metr >= 80:
    i += 1
if i == 1:
    print('Параметр подходит')
else:
    print('Параметр не подходит')
a, b, c = int(input()), int(input()), int(input())
if a == b == c:
  print(3)
elif a == b or b == c or a == c:
  print(2)
else:
  print(0)
num = int(input('Введите число: '))
if (num >= 10) and (num <= 99) or (num <= -10) and (num > -100):
    print('Число двузначное')
else:
    print('Число не двузначное')
rating = int(input('Что получил по математике? '))
if rating >= 4:
  print("Молодец! Можешь отдохнуть.")
elif rating <=3:
  print('Плохо. Марш учиться!')
place = int(input("Введите место в списке поступающих: "))
points = int(input("Введите количество баллов за экзамены: "))
if place <= 10 and points >= 290:
  print("Поздравляем, вы поступили!")
  print("Бонусом вам будет начисляться стипендия.")
if place <= 10 and points < 290:
  print("Поздравляем, вы поступили!")
  print("Но вам не хватило баллов для стипендии.")
if place > 10:
  print("К сожалению, вы не поступили.")
x = int(input("Введите икс: "))
y = 0
if x > 0:
    y = x - 12
elif x == 0:
    y = 5
else:
    y = x * x
print("Игрек равен", y)
a, b, c = int(input()), int(input()), int(input())
max = a
if b > max:
    max = b
if c > max:
    max = c
print(max)
exp = int(input('Введите опыт героя: '))
if exp < 1000:
    level = 1
if exp >= 1000 and exp < 2500:
    level = 2
elif exp >= 2500 and exp < 5000:
    level = 3
else:
    exp >= 5000
    level = 4
print('Уровень героя: ', level)
star

Mon Jun 20 2022 07:31:39 GMT+0000 (Coordinated Universal Time)

#питон_
star

Mon Jun 20 2022 07:31:05 GMT+0000 (Coordinated Universal Time)

#питон_
star

Mon Jun 20 2022 07:30:21 GMT+0000 (Coordinated Universal Time)

#питон_
star

Mon Jun 20 2022 07:29:52 GMT+0000 (Coordinated Universal Time)

#питон_
star

Mon Jun 20 2022 07:29:09 GMT+0000 (Coordinated Universal Time)

#питон_
star

Mon Jun 20 2022 07:28:29 GMT+0000 (Coordinated Universal Time)

#питон_
star

Mon Jun 20 2022 07:27:54 GMT+0000 (Coordinated Universal Time)

#питон_
star

Mon Jun 20 2022 07:27:20 GMT+0000 (Coordinated Universal Time)

#питон_
star

Mon Jun 20 2022 07:26:26 GMT+0000 (Coordinated Universal Time)

#питон_

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension