You have turned-in this assignment. You can review the lesson and see your previous answers.
Starter Quiz
Question 1 of 6
1
of 6
What will be displayed if the user inputs "Python"?
1
2
3
4
5
6
print(
"Name the best programming language?"
) language = input()
if
language ==
"Python"
: print(
"Hi Pythonista"
)
else
: print(
"Wrong!"
)
Code colour
Select one answer
Wrong!
Hi Pythonista
Hi Pythonista Wrong!
There is an error in the program.
Need a hint?
Check