Advertisement
Guest User

Untitled

a guest
Sep 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #
  2. # This program draws a picture of a cow using ASCII Art.
  3. # It asks for input from the user for a number for the cow to "speak".
  4. #
  5. def main():
  6.  
  7. # The following lines draw a cow shape with a message
  8.  
  9. # Ask the user for # of times the cow says "moo"
  10. mooCount = eval(input("Type the number of times to say \"moo\": "))
  11. print("moo "*mooCount)
  12. print()
  13.  
  14. # Draw the cow shape with print statements
  15.  
  16. COPY AND PASTE YOUR COW RIGHT HERE AND NAME AND SHIT
  17.  
  18. # This line allows you to press F5 to make the program run
  19. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement