input
On all versions of Python 3, we can use the built-in input() function to get user input:
input()
name = input( 'Please enter your name: ' ) print( f'Hello, { name }!' )
1 2