1)Windows 10 64 bit
2)Python 3.8.4
3)LibraryyCharm Community Edition 2020.1.3 (Скрин pip list прилагается)
4)Описание проблемы: Установил себе модуль pip colorama, но заметил проблему. Текст печатаемый через input не окрашивается.
2)Python 3.8.4
3)LibraryyCharm Community Edition 2020.1.3 (Скрин pip list прилагается)
4)Описание проблемы: Установил себе модуль pip colorama, но заметил проблему. Текст печатаемый через input не окрашивается.
Python:
Вот мой код[/B]
from colorama import Fore, Back, Style
from colorama import init
init()
print(Back.CYAN)
z = input("What kind of operation do you need?(+, -, /, *): ")
a = float(input("Enter the first number: "))
b = float(input("Enter the second number "))
if z == "+":
c = a + b
print("Result: " + str(c))
elif z == "-":
c = a - b
print("Result: " + str(c))
elif z == "/":
c = a / b
print("Result: " + str(c))
elif z == "*":
c = a * b
print("Result: " + str(c))
else :
print("Something went wrong...")