Advertisement
Slapy

Ship

Jan 22nd, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.15 KB | None | 0 0
  1. from random import randint
  2.  
  3. board = []
  4.  
  5. for x in range(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 randint(0, len(board) - 1)
  17.  
  18. def random_col(board):
  19.     return 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.  
  26. for turn in range(4):
  27.     guess_row = int(raw_input("Guess Row:"))
  28.     guess_col = int(raw_input("Guess Col:"))
  29.    
  30.     if guess_row == ship_row and guess_col == ship_col:
  31.         print "Congratulations! You sunk my battleship!"
  32.         break
  33.     else:
  34.         if (guess_row < 0 or guess_row > 4) or (guess_col < 0 or guess_col > 4):
  35.             print "Oops, that's not even in the ocean."
  36.         elif(board[guess_row][guess_col] == "X"):
  37.             print "You guessed that one already."
  38.         else:
  39.             print "You missed my battleship!"
  40.             board[guess_row][guess_col] = "X"
  41.         if turn == 3:
  42.             print "Game Over"
  43.         print "Turn ", turn+1
  44.         print_board(board)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement