diwank

What I do when I have nothing better to DO..

Sep 13th, 2011
840
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.85 KB | None | 0 0
  1. #!/usr/bin/python
  2. #To appreciate recursion better, go to the bottom of this script.
  3.  
  4. def is_it_fcking_christmas(yes=False):
  5.     """Is it Fcking Christmas?
  6.     IS IT FCKINGGG CHRISTMAS????"""
  7.    
  8.     if yes:pass
  9.         #Who cares?
  10.    
  11.     #Here is a Christmas Tree.
  12.     #Dear Santa,
  13.     #You can shove this up your a$$.
  14.    
  15.     toSanta =    []
  16.     toMary =    [  ]
  17.     toJesus =  [    ]
  18.     rudolph = [      ]
  19.     holyGrail =  {}
  20.     magdalene =  {}
  21.    
  22.     shoveThisUpYourA__ = toSanta.extend(
  23.                 toMary.extend(
  24.                     toJesus.extend(
  25.                         rudolph.extend(
  26.                             holyGrail.keys().extend(
  27.                                 magdalene.values())))))
  28.    
  29.     return shoveThisUpYourA__.insert(0,'Thick Bamboo Stick')
  30.  
  31.  
  32. #We-Care-About-Society-A$$h0les, FIY:
  33. ###This is NOT obscene.
  34. ###A search for 'ass' or 'fuck' or 'hole' returns nothing/ apart from this comment.
  35.  
  36. #To appreciate recursion better, go to the top of this script.
Add Comment
Please, Sign In to add comment