“Python -Loop geht zurück, um zu beginnen” Code-Antworten

Python -Schleife zurück, um zu beginnen

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 geht zurück, um zu beginnen

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

Ähnliche Antworten wie “Python -Loop geht zurück, um zu beginnen”

Fragen ähnlich wie “Python -Loop geht zurück, um zu beginnen”

Weitere verwandte Antworten zu “Python -Loop geht zurück, um zu beginnen” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen