I am wondering if you can restart, in python, Loop A while you are in Loop B. For example:
while True: #Loop A
while True: #Loop B
ans = int("Question")
if ans == "y":
print("Something")
else:
???
With ??? representing the code to go back and repeat Loop A. Please, I really need this answer. For those of you who have or will answer, thank you!