From f773e418dc2f4d6499b3e2da5b13c8198cbb1c03 Mon Sep 17 00:00:00 2001 From: sagar-sehgal Date: Mon, 14 Jan 2019 15:28:35 +0530 Subject: [PATCH] some typos in agents file --- agents.ipynb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/agents.ipynb b/agents.ipynb index 6bfb34d98..5ce0502da 100644 --- a/agents.ipynb +++ b/agents.ipynb @@ -98,7 +98,7 @@ "\n", "class Park(Environment):\n", " def percept(self, agent):\n", - " '''prints & return a list of things that are in our agent's location'''\n", + " '''return a list of things that are in our agent's location'''\n", " things = self.list_things_at(agent.location)\n", " return things\n", " \n", @@ -307,7 +307,7 @@ "source": [ "class Park2D(XYEnvironment):\n", " def percept(self, agent):\n", - " '''prints & return a list of things that are in our agent's location'''\n", + " '''return a list of things that are in our agent's location'''\n", " things = self.list_things_at(agent.location)\n", " return things\n", " \n", @@ -536,7 +536,7 @@ "source": [ "class Park2D(XYEnvironment):\n", " def percept(self, agent):\n", - " '''prints & return a list of things that are in our agent's location'''\n", + " '''return a list of things that are in our agent's location'''\n", " things = self.list_things_at(agent.location)\n", " return things\n", " \n", @@ -649,7 +649,7 @@ "source": [ "class GraphicPark(GraphicEnvironment):\n", " def percept(self, agent):\n", - " '''prints & return a list of things that are in our agent's location'''\n", + " '''return a list of things that are in our agent's location'''\n", " things = self.list_things_at(agent.location)\n", " return things\n", " \n", @@ -1441,7 +1441,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.5" + "version": "3.6.7" } }, "nbformat": 4,