simple trivia question python

Solutions on MaxInterview for simple trivia question python by the best coders in the world

showing results for - "simple trivia question python"
Adam
26 Aug 2017
1ans = input('1. questoin here\n')
2if ans.lower() == 'answer to questoin here':
3  print("corect")
4else:
5  print("incorect")