Dec-23-2018, 12:53 PM
Merry Christmas to all of you! Okay, so this idea came into my head and I started writing it out, it is just a bit of fun, it is meant as a laugh and I hope you find it amusing. Anyhow, I only got this far and ran out of inspiration, so am looking to y'all to help me expand on this theme and idea. Please note, I am not looking for the code to actually do anything, just carry on the humour and bring a smile to people over xmas!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import advent import noel import yuletide from winter import FestiveGreetings from xmas import Dinner, Presents class XmasDay(RegularDay): def __init__( self , waketime = too_early, alcohol_content = too_much, television = usual_garbage, tree = decorated): self .waketime = waketime self .alcohol_content = alcohol_content self .television = television self .tree = tree self .dinner = Dinner(Turkey, Roast Potatoes, Parsnips, Stuffing, Gravy, Carrots, CranberrySauce = maybe) def open_presents( self , a_present, disappointment = total): pass def drink( self , a_drink, eggnog = mandatory_even_if_you_hate_it): pass def slob_out_in_front_of_telly( self , full_belly = True , tele = christ_what_is_this_rubbish_im_watching): pass def pass_out_drunk_on_sofa( self , alcohol_content = overdose_level, snoring = obligatory): pass |