#Hey pcnerds lets make a Multiple choice Quiz in Python # Questions 1 print("question 1: IS pcnerd the best chanel on youtube?") print("a.Yes pcnerd is the best chanel on youtube!") print("b.no it is the worst ever!") q1_ans= input("Your answer:") if q1_ans=="A" or q1_ans=="a": print("Correct") else: print("Wrong")