'''Hello, I'm trying to figure out why my second while loop, within a while loop is not executing in Python.'''
x = True
y = False
z = True
while x == True
while y == True
print("Won't print")
while z == True
print("Should print, right?")