simple trivia question python code example
Example 1: simple trivia question python
ans = input('1. questoin here\n')
if ans.lower() == 'answer to questoin here':
print("corect")
else:
print("incorect")
Example 2: simple trivia question python
ans = input('1. questoin here\n')
if ans.lower() == 'answer to questoin here':
print("corect")
else:
print("incorect")