I’m new with Python. Just One question. I try to create a mini quizz game and i want avoid this :
Answer = Input(« « « Who sing : « Thriller » ? » » »)
If answer == « Michael Jackson »: Print(« Good. »)
Else:
Print(« Wrong. »)
The problem is that if the user answer «michael jackson », the code run with wrong.
How can i fixed that?
Thanks