Last active
August 29, 2015 13:59
-
-
Save pvsousalima/10470395 to your computer and use it in GitHub Desktop.
This python script generates a lot of zueira
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
| #!/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