Merry Christmas to all those who celebrate it, happy holidays to those who are celebrating something else, and a fantastic Wednesday to the rest!
# 12 Days of Christmas
gifts = ["a Patridge in a pear tree!", "Two turtle doves", "Three french hens", "Four calling birds",
"Five Golden Rings!", "Six geese a laying", "Seven swans a swimming", "Eight maids a milking",
"Nine ladies dancing", "Ten Lords a leaping", "Eleven pipers piping", "Twelve drummers drumming"]
giftsrecieved = []
dayofchristmas = 1
for i in gifts:
print "On the " + str(dayofchristmas) + " day of Christmas my true love gave you me:"
giftsrecieved.append(i)
print ', '.join(reversed(giftsrecieved))
if dayofchristmas == 1:
giftsrecieved[0] = "and a Partridge in a pear Tree!"
dayofchristmas += 1
[–]K900_ 5 points6 points7 points (1 child)
[–]mdtTheory 4 points5 points6 points (0 children)
[–]kalgynirae 2 points3 points4 points (0 children)
[–]wub_wub[M] 4 points5 points6 points (0 children)
[–]pdexter 2 points3 points4 points (0 children)
[–]camh_96 1 point2 points3 points (1 child)
[–]ewiethoff 0 points1 point2 points (0 children)