Skip to content

Instantly share code, notes, and snippets.

@Deadlyelder
Created May 7, 2019 08:47
Show Gist options
  • Save Deadlyelder/ae0ee1e2c7753cfbf086b1c632a0f1a5 to your computer and use it in GitHub Desktop.
Save Deadlyelder/ae0ee1e2c7753cfbf086b1c632a0f1a5 to your computer and use it in GitHub Desktop.
Bored....
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