“Python Loop volte para começar” Respostas de código

Python Loop de volta para começar

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 volte para começar

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

Respostas semelhantes a “Python Loop volte para começar”

Perguntas semelhantes a “Python Loop volte para começar”

Mais respostas relacionadas para “Python Loop volte para começar” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código