Last active
February 23, 2018 10:47
-
-
Save r-darwish/b4086134011d945542e9c1e0a5f33052 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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