Skip to content

Instantly share code, notes, and snippets.

@pvsousalima
Last active August 29, 2015 13:59
Show Gist options
  • Save pvsousalima/10470395 to your computer and use it in GitHub Desktop.
Save pvsousalima/10470395 to your computer and use it in GitHub Desktop.
This python script generates a lot of zueira
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
tips:
- If you're BR respond "BR"
- Else, repond HUE.
'''
# Makes the HUE
def HUE(BR):
if 'BR' in BR:
print 'HUEHUEHUEHUEHUEHUEHUEHUEHUE'
elif 'HUE' in BR:
for i in range(100):
print 'HUEHUEHUEHUEHUEHUEHUEHUEHUE' * i
print '\n'
# Starts the zueira
def main():
while(1):
BR = raw_input('BR?\n')
HUE(BR)
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment