################################################################ # # # TEXT MALVINATOR # # # # Version 1.0 # # Author: kaolincash # # # # Date: 13th May 2019 # # Email: kaolin@maia.cash # # # ################################################################ import random line1 = ['Little boxes on the hillside,', 'And the people in the houses', 'And they all play on the golf course', 'And the boys go into business'] line2 = ['Little boxes made of ticky tacky', 'All went to the university', 'And drink their martinis dry', 'And marry and raise a family'] line3 = ['Little boxes on the hillside,', 'Where they were put in boxes', 'And they all have pretty children', 'In boxes made of ticky tacky'] line4 = ['Little boxes all the same,', 'And they came out all the same', 'And the children go to school,', 'And they all look just the same,'] line5 = ['There\'s a pink one and a green one', 'And there\'s doctors and lawyers', 'And the children go to summer camp', 'There\'s a pink one and a green one'] line6 = ['And a blue one and a yellow one', 'And business executives', 'And then to the university', 'And a blue one and a yellow one'] line7 = ['And they\'re all made out of ticky tacky', 'And they\'re all made out of ticky tacky', 'Where they are put in boxes', 'And they\'re all made out of ticky tacky'] line8 = ['And they all look just the same.', 'And they all look just the same.', 'And they come out all the same.', 'And they all look just the same.'] verse1 = ( print("Little boxes on the hillside,"), print(random.choice(line2)), print(random.choice(line3)), print(random.choice(line4)), print(random.choice(line5)), print(random.choice(line6)), print(random.choice(line7)), print(random.choice(line8)), print() ) verse2 = ( print(random.choice(line1)), print(random.choice(line2)), print(random.choice(line3)), print(random.choice(line4)), print(random.choice(line5)), print(random.choice(line6)), print(random.choice(line7)), print(random.choice(line8)), print() ) verse3 = ( print(random.choice(line1)), print(random.choice(line2)), print(random.choice(line3)), print(random.choice(line4)), print(random.choice(line5)), print(random.choice(line6)), print(random.choice(line7)), print(random.choice(line8)), print() ) verse4 = ( print(random.choice(line1)), print(random.choice(line2)), print(random.choice(line3)), print(random.choice(line4)), print(random.choice(line5)), print(random.choice(line6)), print(random.choice(line7)), print(random.choice(line8)), )