# Allison Obourn
# CSc 110, Spring 2018
# Lecture 8

# This program prints a picture of the world
# supported by turtles all the way down.


def main():
    world()
    turtle("=", "ou")
    turtle("v", "ov")

# prints an ASCII picture of the world
def world():
    print("     .-'';'-.")
    print("   ,'   <_,-.`.")
    print("  /)   ,--,_>\\_\\")
    print(" |'   (      \\_ |")
    print(" |_    `-.    / |")
    print("  \`-.   ;  _(`/")
    print("   `.(    \/ ,'") 
    print("     `-....-'")

# takes a single character representing the turtle's shell
# pattern and two characters reresenting the turtle's feet
# as parameters and prints a turtle
def turtle(shell, foot):
    print("        ___  _")
    print("       /" + shell + " " + shell +"\\/')")
    print("      /" + shell + " " + shell + " " + shell + "\\/")
    print("       " + foot + " " + foot)



main()    
