JavaScript required
We’re sorry, but Coda doesn’t work properly without JavaScript enabled.
Gallery
Debug 3.1. Keyboard Input with starter code
Share
Explore
Gallery
Debug 3.1. Keyboard Input with starter code
Debug 3.1. Keyboard Input with starter code
The Task
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 favourite colour
favouriteColour
=
input
(
What
is
your favourite colour?
)
#ASKS the user to enter their favourite colour
favouriteFood
=
input
(
What
is
your favourite food?
)
# blank line
print
(
'\n\n'
)
# DISPLAY user output
print
(
'Your favourite colour is '
+
favouriteColour
)
print
(
'Your favourite food is '
+
favouriteFood
)
;
Gallery
Share
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
Ctrl
P
) instead.