Replymessage unavailable
questions = [
["which language was used to create fb?", "python", "French", "JavaScript", "php", 4]
]
levels = [1000]
money = 0
for i in range(len(questions)):
question = questions[i]
print(f"\nQuestion for Rs. {levels[i]}")
print(f"1. {question[1]} 2. {question[2]}")
print(f"3. {question[3]} 4. {question[4]}")
reply = int(input("Enter your answer (1-4): "))
if reply == question[-1]:
print(f"Correct answer! You have won Rs. {levels[i]}")
money = levels[i]
else:
print("Wrong answer!")
break
print(f"Your take home money is {money}")