-
-
Save thor27/35f545570d5ad4586ee0f774d9ebcb47 to your computer and use it in GitHub Desktop.
Canta a musiquinha do elefante que incomoda muita gente.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Música do elefante. | |
Digite a quantidade de vezes que vai contar, preferencialmente um número par. | |
""" | |
elefantes = int(input('Digite quantos elefantes quer contar: ')) | |
ini = "{numero} {plural} muita gente!\n{numero2} elefantes {incomodam} muito mais.\n" | |
for elefante in range(1, elefantes): | |
print(ini.format( | |
numero=elefante, | |
plural="elefantes incomodam" if elefante > 1 else "elefante incomoda", | |
numero2=elefante+1, | |
incomodam=", ".join(["incomodam"] * (elefante+1)) | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment