You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
405 B
15 lines
405 B
# Plné nasazení knihovny
|
|
import termcolor
|
|
print(termcolor.colored("Hello","red"))
|
|
|
|
#Využití prostředků z knihovny
|
|
from termcolor import colored
|
|
print(colored("World","yellow"))
|
|
|
|
#Přidání Aliasu pro knihovnu
|
|
import termcolor as tc
|
|
print(tc.colored("TEST","magenta"))
|
|
|
|
#Přidat Alias pro importovanou část knihovny
|
|
from termcolor import colored as obarvit
|
|
print(obarvit("Obarvení textu","cyan"))
|