Помогите пожалуйста УМОЛЯЮ
Мне нужно вывести на экран вот это
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)
Вас заинтересует
1 год назад
1 год назад
2 года назад
8 лет назад
8 лет назад
9 лет назад
intro = "Here is important information about your account security."
first_name = 'Joffrey!'
greeting = 'Hello, '
print (greeting,first_name)
print (info)
print (intro)