Python break continue pass ⛔

Publicado el: 11 enero 2021
en el canal de: Bro Code
38,949
2k

Python break continue pass tutorial example explained

#python #break #continue #pass

Loop Control Statements = change a loops execution from its normal sequence

break = used to terminate the loop entirely
continue = skips to the next iteration of the loop.
pass = does nothing, acts as a placeholder

while True:
name = input("Enter your name: ")
if name != "":
break

phone_number = "123-456-7890"
for i in phone_number:
if i == "-":
continue
print(i, end="")

for i in range(1,21):
if i == 13:
pass
else:
print(i)

Bro Code merch store 👟 :
===========================================================
https://teespring.com/stores/bro-code-5
===========================================================

music credits 🎼 :
===========================================================
Up In My Jam (All Of A Sudden) by - Kubbi   / kubbi  
Creative Commons — Attribution-ShareAlike 3.0 Unported— CC BY-SA 3.0
Free Download / Stream: http://bit.ly/2JnDfCE
Music promoted by Audio Library    • Up In My Jam (All Of A Sudden) – Kubb...  
===========================================================


En esta página del sitio puede ver el video en línea Python break continue pass ⛔ de Duración hora minuto segunda en buena calidad , que subió el usuario Bro Code 11 enero 2021, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 38,949 veces y le gustó 2 mil a los espectadores. Disfruta viendo!