Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while True:
- try:
- first_number = (input("\033[1m\033[95mВведіть перше число: \033[0m"))
- second_number = (input("\033[92;1mВведіть друге число: \033[0m"))
- float(first_number)
- float(second_number)
- break
- except:
- print("\033[1m\033[31mВводити можна тільки числа. Спробуйте ще раз!\033[0m")
- continue
- if float(first_number) > float(second_number):
- print("\033[1m\033[96mПерше число більше за друге\033[0m")
- elif float(first_number) < float(second_number):
- print("\033[1m\033[96mПерше число менше за друге\033[0m")
- elif float(first_number) == float(second_number):
- print("\033[1m\033[96mПерше число дорівнює другому\033[0m")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement