“Python Loop retourne pour commencer” Réponses codées

Python Loop Retour pour commencer

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 retourne pour commencer

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

Réponses similaires à “Python Loop retourne pour commencer”

Questions similaires à “Python Loop retourne pour commencer”

Plus de réponses similaires à “Python Loop retourne pour commencer” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code