I want this code to restart the question after someone doesn't put in the desired answer. I'm trying to use a while loop here, but something about it isn't working... Help! Also, this is a crude representation of a much much longer script.
def func_1():
  funce_again = True
  while funce_again == True:
    funce_again = False
  def mother():
    mothers_again = True
    while mothers_again == True:
      mothers_again = False
      print("1")
      print("2")
      print("\nPick a number.")
      dad = input("> ")
      if dad == "1":
        daddy = "1.0"
        bladder = "69"
      if dad == "2":
        daddy = "2.0"
        bladder = "70"
      else:
        mothers_again = True
        
      daddys_again = True
      while daddys_again == True:
        daddys_again = False
        os.system('clear')
        print(f"my mother is {bladder}")
  mother()
func_1()
 
     
    