Nelogeek

Untitled

Oct 18th, 2021
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.67 KB | None | 0 0
  1. import time
  2. print("Hello world")
  3. print('Hello world')
  4. print("""
  5. Слишком много
  6.    текста
  7. """)
  8. #---------------------------------------------------------------------
  9. answer = input("Хотите ли вы удалить WINDOWS? Ответ: Да/Нет \n").lower()
  10. if answer == "да":
  11.     print("Начался процесс удаления системы")
  12.     time.sleep(1)
  13.     print("_5%")
  14.     print("___25%")
  15.     time.sleep(0.5)
  16.     print("__________50%")
  17.     time.sleep(1)
  18.     print("__________________100%")
  19. elif answer == "нет":
  20.     print("Я всё же удалю ваш Windows")
  21. else:
  22.     print("Ответ не распознан")
  23.  
Advertisement
Add Comment
Please, Sign In to add comment