Complete the code to make the agent observe its environment.
observation = environment.[1]()The agent uses the observe method to get information from the environment.
Complete the code to make the agent think and decide the next action.
action = agent.[1](observation)The agent uses the think method to process the observation and decide what to do next.
Fix the error in the code to make the agent perform the action.
environment.[1](action)The agent must act on the environment to perform the chosen action.
Fill both blanks to complete the agent's main loop for observe and act.
while True: observation = environment.[1]() action = agent.[2](observation)
The agent continuously observes the environment and then thinks to decide the action.
Fill all three blanks to complete the agent's full cycle: observe, think, and act.
while True: observation = environment.[1]() action = agent.[2](observation) environment.[3](action)
The agent observes the environment, thinks to decide, then acts to change the environment.
