Skip to content

Instantly share code, notes, and snippets.

@dalanmiller
Created November 4, 2012 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dalanmiller/4014216 to your computer and use it in GitHub Desktop.
Save dalanmiller/4014216 to your computer and use it in GitHub Desktop.
prefixes = 'JKLMNOPQ'
suffix = 'ack'
for letter in prefixes:
if letter == 'O' or 'Q':
print letter + 'u' + suffix
else:
print letter + suffix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment