write a program in python where 2 stick figures are chasing one.
def head():
print
print " o "
def body():
print " /|\\ "
def legs():
print " _/ \\_ "
print
def roundBody():
print " /O\\ "
def longLegs():
print " / \\ "
print "_/ \\_ "
print
def skinnyStickFigure():
def main():
skinnyStickFigure()
main()
Comments
Leave a comment