Istruzione Python 3 - pass

Viene utilizzato quando un'istruzione è richiesta sintatticamente ma non si desidera eseguire alcun comando o codice.

Il passl'istruzione è un'operazione nulla ; non accade nulla quando viene eseguito. Ilpass è utile anche nei punti in cui il codice finirà per andare, ma non è stato ancora scritto, ad esempio negli stub.

Sintassi

pass

Esempio

#!/usr/bin/python3

for letter in 'Python': 
   if letter == 'h':
      pass
      print ('This is pass block')
   print ('Current Letter :', letter)

print ("Good bye!")

Produzione

Quando il codice sopra viene eseguito, produce il seguente risultato:

Current Letter : P
Current Letter : y
Current Letter : t
This is pass block
Current Letter : h
Current Letter : o
Current Letter : n
Good bye!