Предмет: Информатика,
автор: decody84
Помогите пожалуйста УМОЛЯЮ
Мне нужно вывести на экран вот это
Hello, Joffrey!
Here is important information about your account security.
We couldn't verify your mother's maiden name.
Используя вот это
info = "We couldn't verify your mother's maiden name."
intro = "Here is important information about your account security."
first_name = 'Joffrey!'
greeting = 'Hello, '
# BEGIN (write your solution here)
# END
Используя всего два print ( )
Можно использовать \n
Если что это язык PYTHON
Ответы
Автор ответа:
1
Ответ:
отметь как лучший потом
Объяснение:
info = "We couldn't verify your mother's maiden name."
intro = "Here is important information about your account security."
print (info)
print (intro)
intro = "Here is important information about your account security."
first_name = 'Joffrey!'
greeting = 'Hello, '
print (first_name,info)
print (greeting,intro)
intro = "Here is important information about your account security."
first_name = 'Joffrey!'
greeting = 'Hello, '
print (greeting,first_name)
print (info)
print (intro)
Похожие вопросы
Предмет: Английский язык,
автор: iore
Предмет: Окружающий мир,
автор: lauragold0210
Предмет: Русский язык,
автор: znania86
Предмет: Математика,
автор: kamrantagiev05
Предмет: Химия,
автор: noyirsaitkulov
intro = "Here is important information about your account security."
first_name = 'Joffrey!'
greeting = 'Hello, '
print (greeting,first_name)
print (info)
print (intro)