• Предмет: Информатика
  • Автор: shinkarenko86
  • Вопрос задан 2 месяца назад

вот задание. Вот такой мой код и не знаю как объединить 2-5 строку в одну

def out_white(text):
print("\033[37m\033[40m {}" .format(text))
def out_red(text):
print("\033[0m\033[31m\033[40m {}" .format(text))
def out_b(text):
print("\033[0m\033[39m\033[40m\033[1m {}" .format(text))

out_white("Don't compare yourself with anyone in this world...")
out_red("if")
out_b("you")
out_red("do so")
out_b(", you are insulting yourself.")
out_b("Bill Gates")

Приложения:

Ответы

Ответ дал: tenanatoly40
1

def out_white(text):

   print("\033[37m\033[40m {}" .format(text))

def out_red(text):

   print("\033[0m\033[31m\033[40m {}" .format(text))

def out_b(text):

   print("\033[0m\033[39m\033[40m\033[1m {}" .format(text))

out_white("Don't compare yourself with anyone in this world...")

print("\033[0m\033[31m\033[40m {} \033[0m\033[39m\033[40m\033[1m {} \033[0m\033[31m\033[40m {} \033[0m\033[39m\033[40m\033[1m {}, you are insulting yourself. Bill Gates" .format("if", "you", "do so"))


shinkarenko86: выдает ошибку
Вас заинтересует