Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import time
- print("Hello world")
- print('Hello world')
- print("""
- Слишком много
- текста
- """)
- #---------------------------------------------------------------------
- answer = input("Хотите ли вы удалить WINDOWS? Ответ: Да/Нет \n").lower()
- if answer == "да":
- print("Начался процесс удаления системы")
- time.sleep(1)
- print("_5%")
- print("___25%")
- time.sleep(0.5)
- print("__________50%")
- time.sleep(1)
- print("__________________100%")
- elif answer == "нет":
- print("Я всё же удалю ваш Windows")
- else:
- print("Ответ не распознан")
Advertisement
Add Comment
Please, Sign In to add comment