We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb6bcc commit 3181f4aCopy full SHA for 3181f4a
1.py
@@ -0,0 +1,9 @@
1
+print("Привет! Добро пожаловать! 👋")
2
+from colorama import Fore, Back, Style, init
3
+
4
+init(autoreset=True) # Autoreset tähendab, et pärast iga väljundit värv taastatakse.
5
6
+print(Fore.RED + "See tekst on punane!")
7
+print(Back.GREEN + "See tekst on rohelise taustaga!")
8
+print(Style.BRIGHT + "See tekst on heledam!")
9
+print(Fore.YELLOW + Style.BRIGHT + "Kollane ja ere!")
0 commit comments