Implement wumpus world agent in python


Problem

Implement Wumpus World Agent in Python Agent is in 20 × 20 tile with 5 arrows.

There are 4 pits and 3 wumpuses. Gold is at (10,5)

A valid environment is as below.

size 20
arrow 5
p 5 5
w 2 2
p 4 2
p 6 2
g 10 5
w 6 3
w 9 9
p 11 3

Agent dies if it enters a cell of live wumpus (Game over). Dead wumpus disappears. Wampus screams after being hit by an arrow, and the same can be heard by the agent using the sensor. Agent can move using GO up/down/left/right. Agent can focus arrow by SHOOT up/down/left/right.Agent entering in pit gets stuck. This is again Game over.

Agent is always in cell (1,1) at the beginning. No pit or wumpus in the cell (1,1)

Request for Solution File

Ask an Expert for Answer!!
Python Programming: Implement wumpus world agent in python
Reference No:- TGS03256634

Expected delivery within 24 Hours