Skip to content
Debug 3.2. Storing Input with starter code
  • Pages
    • The Task
    • icon picker
      Python Starter Code
    • Code Clips

Python Starter Code

Copy and paste the code below into your main.py file before you begin the task.
# blank line
print('\n\n')

# ASKS the user to enter their name
name = input 'Please enter your name: '

# blank line
print('\n\n')

# DISPLAY user output
print('Hello ' + name)
 
Want to print your doc?
This is not the way.
Try clicking the ··· in the right corner or using a keyboard shortcut (
CtrlP
) instead.