User:Inge Hoonte/madhatter: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
 
Line 1: Line 1:
'''CODE'''
'''CODE'''
<source lang="bash">
import random


import random
accessories = ["musket", "fife", "drum", "coat", "hat", "shoes"]
people = ["girl", "soldier", "wife", "hatter", "cobbler", "tailor"]
   
   
accessories = ["musket", "fife", "drum", "coat", "hat", "shoes"]
from random import choice
people = ["girl", "soldier", "wife", "hatter", "cobbler", "tailor"]
   
   
from random import choice
print """Oh""",choice(people),""",""",choice(people),""", will you marry me\nWith your""",choice(accessories),""",""",choice(accessories),""",""",choice(accessories),"""?\nOh how can I marry such a pretty little""",choice(people),"""\nWhen I have no""",choice(accessories),"""to put on?"""
</source>
print """Oh""",choice(people),""",""",choice(people),""", will you marry me\nWith your""",choice(accessories),""",""",choice(accessories),""",""",choice(accessories),"""?\nOh how can I marry such a pretty little""",choice(people),"""\nWhen I have no""",choice(accessories),"""to put on?"""
 


'''RESULT'''<br/>
'''RESULT'''<br/>

Latest revision as of 11:08, 27 October 2011

CODE

import random

accessories = ["musket", "fife", "drum", "coat", "hat", "shoes"]
people = ["girl", "soldier", "wife", "hatter", "cobbler", "tailor"]
 
from random import choice 
 
print """Oh""",choice(people),""",""",choice(people),""", will you marry me\nWith your""",choice(accessories),""",""",choice(accessories),""",""",choice(accessories),"""?\nOh how can I marry such a pretty little""",choice(people),"""\nWhen I have no""",choice(accessories),"""to put on?"""

RESULT

Oh soldier , hatter , will you marry me
With your shoes , fife , shoes ?
Oh how can I marry such a pretty little soldier
When I have no shoes to put on?

or

Oh soldier , wife , will you marry me
With your shoes , drum , drum ?
Oh how can I marry such a pretty little cobbler
When I have no coat to put on?

or

Oh soldier , wife , will you marry me
With your fife , coat , drum ?
Oh how can I marry such a pretty little hatter 
When I have no coat to put on?

etc