Skip to content

Instantly share code, notes, and snippets.

@r-darwish
Last active February 23, 2018 10:47
Show Gist options
  • Save r-darwish/b4086134011d945542e9c1e0a5f33052 to your computer and use it in GitHub Desktop.
Save r-darwish/b4086134011d945542e9c1e0a5f33052 to your computer and use it in GitHub Desktop.
animals = [
('תרנגול', 'קו קו! ריקו קו', 'קטן'),
('חתלתול', 'מהאו וואו', 'קטן'),
('כלבלבון', 'המבף המבף', 'קטן'),
('חמור', 'הי הא', 'קטן'),
('דג זהב', '...', 'קטן באקווריום'),
('עורף דורס', 'קרע קרע קרע קרע', 'בז קטן'),
]
for i, (animal, _, description) in enumerate(animals):
print(f'אצא לי הצ׳וקה, {animal} {description} אקנה לי')
for (animal, voice, _) in animals[i::-1]:
print(f'ה{animal} - {voice}')
print('הוא יזמר עד אור הבוקר')
print('')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment