Skip to content

Instantly share code, notes, and snippets.

@thor27
Forked from fchevitarese/elefante.py
Last active February 20, 2017 13:18
Show Gist options
  • Save thor27/35f545570d5ad4586ee0f774d9ebcb47 to your computer and use it in GitHub Desktop.
Save thor27/35f545570d5ad4586ee0f774d9ebcb47 to your computer and use it in GitHub Desktop.
Canta a musiquinha do elefante que incomoda muita gente.
"""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