Created
May 7, 2019 08:47
-
-
Save Deadlyelder/ae0ee1e2c7753cfbf086b1c632a0f1a5 to your computer and use it in GitHub Desktop.
Bored....
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
names = ['baby', 'mommy', 'daddy', 'gramdma', 'grandpa', 'Let\'s go hunt'] | |
for name in names: | |
for i in range(3): | |
if name == names[5]: | |
print(f'{name},'+ ' doo '*4) | |
else: | |
print(f'{name.title()} shark,'+ ' doo'*4) | |
if name == names[5]: | |
print(name) | |
else: | |
print(name.title()+' shark!\n') | |
print('\nRunaway...') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment