Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. import random
  2.  
  3. board = []
  4.  
  5. for x in range(0,5):
  6. board.append(["O"] * 5)
  7.  
  8. def print_board(board):
  9. for row in board:
  10. print " ".join(row)
  11.  
  12. print "Let's play Battleship!"
  13. print_board(board)
  14.  
  15. def random_row(board):
  16. return random.randint(0,len(board)-1)
  17.  
  18. def random_col(board):
  19. return random.randint(0,len(board[0])-1)
  20.  
  21. ship_row = random_row(board)
  22. ship_col = random_col(board)
  23. print ship_row
  24. print ship_col
  25. for turn in range(4):
  26. guess_row = input("Guess Row:")
  27. guess_col = input("Guess Col:")
  28. guess = 0
  29. if guess_row == ship_row and guess_col == ship_col:
  30. print "Congratulations! You sunk my battleship!"
  31. break
  32. else:
  33. guess = guess + 1
  34. if guess == 3:
  35. print "Game Over"
  36. else:
  37. if (guess_row < 0 or guess_row > 4) or (guess_col < 0 or guess_col > 4):
  38. print "Oops, that's not even in the ocean."
  39. elif(board[guess_row][guess_col] == "X"):
  40. print "You guessed that one already."
  41. else:
  42. print "You missed my battleship!"
  43. if turn == 3:
  44. print "Game Over"
  45. board[guess_row][guess_col] = "X"
  46. print turn + 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement