The customary “Hello World” app that most elementary coding courses begin with. This short app asks the user for their name, and provides a personalised hello response to them.
Code
print('----------------------------')
print(' HELLO APP')
print('----------------------------')
print()
user_text = input('What is your name? ')
greeting = "Nice to meet you,"
print(greeting, user_text)
Screenshot

Join the conversation: