adding nuvo the explorer activity based workshop#588
Open
Vinutha-Ananthachandran wants to merge 6 commits intomasterfrom
Open
adding nuvo the explorer activity based workshop#588Vinutha-Ananthachandran wants to merge 6 commits intomasterfrom
Vinutha-Ananthachandran wants to merge 6 commits intomasterfrom
Conversation
ozhang22
reviewed
Oct 22, 2025
|
|
||
| Once upon a time, in a bright green meadow, two curious robot turtles — **Nuvo** and **Nuvi** — loved exploring, racing to the pond, and playing hide-and-seek under tall flowers. | ||
|
|
||
| One sunny afternoon, Nuvi spotted a mysterious maze nearby. She giggled and said, |
Member
There was a problem hiding this comment.
nit: Nuvi is agender, use they instead of she.
Comment on lines
+46
to
+50
| 1. t.penup() – lifts the turtle’s pen so it won’t draw a line while moving. | ||
| 2. t.goto(x, y) – moves the turtle to the coordinates (x, y) on the screen. The `x` and `y` in the `t.goto()` method are the `x` and `y` coordinates of the turtle. We want to change the `x` and `y` coordinates of the turtle from `(0, 0)` which is center of the image, to somewhere a little further away so that the Nuvo can navigate within the maze and Nuvi can hide inside the maze. | ||
| 3. if isPenDown: – checks if we want the turtle to start drawing again. | ||
| 4. t.pendown() – puts the pen down so it can draw. | ||
| 5. return – ends the function (optional, but good practice). |
Member
There was a problem hiding this comment.
I'd put all the code in code formatting
Suggested change
| 1. t.penup() – lifts the turtle’s pen so it won’t draw a line while moving. | |
| 2. t.goto(x, y) – moves the turtle to the coordinates (x, y) on the screen. The `x` and `y` in the `t.goto()` method are the `x` and `y` coordinates of the turtle. We want to change the `x` and `y` coordinates of the turtle from `(0, 0)` which is center of the image, to somewhere a little further away so that the Nuvo can navigate within the maze and Nuvi can hide inside the maze. | |
| 3. if isPenDown: – checks if we want the turtle to start drawing again. | |
| 4. t.pendown() – puts the pen down so it can draw. | |
| 5. return – ends the function (optional, but good practice). | |
| 1. `t.penup()` – lifts the turtle’s pen so it won’t draw a line while moving. | |
| 2. `t.goto(x, y)` – moves the turtle to the coordinates (x, y) on the screen. The `x` and `y` in the `t.goto()` method are the `x` and `y` coordinates of the turtle. We want to change the `x` and `y` coordinates of the turtle from `(0, 0)` which is center of the image, to somewhere a little further away so that the Nuvo can navigate within the maze and Nuvi can hide inside the maze. | |
| 3. `if isPenDown:` – checks if we want the turtle to start drawing again. | |
| 4. `t.pendown()` – puts the pen down so it can draw. | |
| 5. `return` – ends the function (optional, but good practice). |
Comment on lines
+98
to
+102
| Change the maze color to something fun like "brown" or "darkgreen". | ||
|
|
||
| Make your walls thicker or thinner by adjusting the pensize. | ||
|
|
||
| Try creating extra paths — can you make a secret shortcut for Nuvi? |
Member
There was a problem hiding this comment.
We should have answers for these as a "show answer" block. Let's also make this a list
Suggested change
| Change the maze color to something fun like "brown" or "darkgreen". | |
| Make your walls thicker or thinner by adjusting the pensize. | |
| Try creating extra paths — can you make a secret shortcut for Nuvi? | |
| - Change the maze color to something fun like "brown" or "darkgreen". | |
| - Make your walls thicker or thinner by adjusting the pensize. | |
| - Try creating extra paths — can you make a secret shortcut for Nuvi? |
|
|
||
| Nuvo and Nuvi are happy to meet you! 💫 | ||
|
|
||
| <p style="text-align: center;"><iframe src="https://trinket.io/embed/python/b80421787b6b" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe> </p> |
Member
There was a problem hiding this comment.
Are these trinkets in the Nuevo Foundation account?
|
|
||
| Troubleshooting: | ||
|
|
||
| Stuck? Check the [Answer key](../answer-key) for the activity that you are stuck on! |
Member
There was a problem hiding this comment.
Usually we don't allow students to see the answer key - we usually only let instructors look at the whole thing
| th.set_cursor(nuvo, 10, -135) | ||
| ``` | ||
|
|
||
| 🌟 Challenge for You |
Member
There was a problem hiding this comment.
Make this a header
Suggested change
| 🌟 Challenge for You | |
| ### 🌟 Challenge for You |
Member
There was a problem hiding this comment.
Give credit to the image - but we shall work on getting an original illustration for this
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.