I'm writing a program where it asks you yes or no questions and then responds to those. Instead of manually writing all the questions I wanted to have the program randomly select some questions from a list and print them out. This part I have achieved by using the random function but I also want it to repeat itself by restarting from the top and picking another random question. I got pretty close with a while True loop and a for loop, but it doesn't work.
I have already tried using a for loop and a while True, sadly, I could not figure out how to make it work.
I have seen a few posts on this but none of which answer my question.