from random import randint
board = []
for x in range(0, 5):
board.append(["O"] * 5)
def print_board(board):
for row in board:
print " ".join(row)
print_board(board)
def random_row(board):
return randint(0, len(board) - 1)
def random_col(board):
return randint(0, len(board[0]) - 1)
ship_row = random_row(board)
ship_col = random_col(board)
print ship_row
print ship_col
guess_row = int(raw_input("Guess Row:"))
guess_col = int(raw_input("Guess Col:"))
# Write your code below!
if guess_row == ship_row and guess_col == ship_col:
print "Congratulations! You sank my battleship!"
else:
print "You missed my battleship!"
board[guess_row][guess_col] = "X"
print_board(board)
this is giving error like “Traceback (most recent call last):
File “python”, line 33, in
IndexError: list index out of range”
I couldn’t find any errors in your code so tested it, and got no errors and a pass. Perhaps refresh the page and try again (be sure your work is saved).
if guess_row == ship_row and guess_col == ship_col:
print “Congratulations! You sank my battleship!”
else:
print “You missed my battleship!”
board[guess_row][guess_col] = ‘X’
print_board(board)
I did this and it let me pass
hope this helps
And when you hit save and submit to test the code, put the numbers 1 and 2 because I tried some numbers higher and it seemed to reject it and give the error that was posted by kathan40