-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathGrid_Explorer.py
72 lines (54 loc) · 2.03 KB
/
Grid_Explorer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import random
def create_grid(size):
return [[' ' for _ in range(size)] for _ in range(size)]
def place_treasure(grid, size):
row = random.randint(0, size - 1)
col = random.randint(0, size - 1)
grid[row][col] = 'T'
return row, col
def display_grid(grid):
size = len(grid)
for row in grid:
print(' | '.join(cell.center(3) for cell in row))
print('-' * (size * 5 - 1))
def move_explorer(grid, row, col, direction):
size = len(grid)
if direction == 'up' and row > 0:
row -= 1
elif direction == 'down' and row < size - 1:
row += 1
elif direction == 'left' and col > 0:
col -= 1
elif direction == 'right' and col < size - 1:
col += 1
return row, col
def grid_explorer(size):
grid = create_grid(size)
explorer_row, explorer_col = random.randint(
0, size - 1), random.randint(0, size - 1)
treasure_row, treasure_col = place_treasure(grid, size)
print("Welcome to Grid Explorer!")
print("Find the treasure (T) on the grid by navigating in the up, down, left, or right direction.")
print("Enter 'quit' to exit the game.\n")
while True:
display_grid(grid)
print(f"Explorer position: ({explorer_row}, {explorer_col})")
move = input("Enter your move (up/down/left/right): ").lower()
if move == 'quit':
print("Exiting the game...")
break
if move not in ['up', 'down', 'left', 'right']:
print("Invalid move. Try again.")
continue
new_explorer_row, new_explorer_col = move_explorer(
grid, explorer_row, explorer_col, move)
if grid[new_explorer_row][new_explorer_col] == 'T':
display_grid(grid)
print("Congratulations! You found the treasure!")
break
else:
grid[explorer_row][explorer_col] = ' '
explorer_row, explorer_col = new_explorer_row, new_explorer_col
grid[explorer_row][explorer_col] = 'E'
if __name__ == "__main__":
grid_explorer(5)