quiz

Starter Quiz

Question 1 of 6
1 of 6
What will be displayed if the user inputs "Python"?
123456
print("Name the best programming language?") language = input() if language == "Python": print("Hi Pythonista") else: print("Wrong!")
Select one answer
Will the condition return either a True or False?