Помогите пожалуйста УМОЛЯЮ
Мне нужно вывести на экран вот это
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)
так перед этим надо еще hello, Foffrey
то есть joffrey
минутку
info = "We couldn't verify your mother's maiden name."
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 (first_name,info)
print (greeting,intro)
info = "We couldn't verify your mother's maiden name."
intro = "Here is important information about your account security."
first_name = 'Joffrey!'
greeting = 'Hello, '
print (greeting,first_name)
print (info)
print (intro)
intro = "Here is important information about your account security."
first_name = 'Joffrey!'
greeting = 'Hello, '
print (greeting,first_name)
print (info)
print (intro)
говорит неверноб и прин должен только 2 быть
Вас заинтересует
2 года назад
2 года назад
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)