If I have a body of code that looks like this:
for ship in ships.shipLengths.key():
    while(True):
        # Code
        while(True):
            # Code
            while(True):
                # Code
If I am currently in the 3rd while loop is there a way for me to get back to the first while loop?
 
     
    