“Python Loop vuelve para comenzar” Código de respuesta

Python Loop de regreso para comenzar

def main(): #defines the area in indents that will be triggered with main()#
  print('hi')
  yn = input('Wanna loop back to the start? ')
  if yn = 'yes':
    main() #loops back to where we defined main#
    
main() #This starts the main loop, without this, main would just be defined but not run#
Ruukasu

Python Loop vuelve para comenzar

while True:
  #do something
  continue #jumps back to while True
  # not do that
  
Xenophobic Xenomorph

Respuestas similares a “Python Loop vuelve para comenzar”

Preguntas similares a “Python Loop vuelve para comenzar”

Más respuestas relacionadas con “Python Loop vuelve para comenzar” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código