6 lines
170 B
Python
6 lines
170 B
Python
prompt = 'if you tell us who you are,we can personalize the messages you see.'
|
|
prompt += '\nwhat is your first name:'
|
|
|
|
name = input(prompt)
|
|
print("hello " + name + "!" )
|