# Getting Started

To get started, go to [code.strivemath.com](https://code.strivemath.com/).&#x20;

<figure><img src="https://768248463-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fqbs7pgU3AVBY06Rl9M31%2Fuploads%2FCGB9kC2M7KJucVA3lSGk%2Fimage.png?alt=media&#x26;token=c6ae2b31-9ae8-44fd-8936-950ebc5f8154" alt=""><figcaption></figcaption></figure>

⬆ This is the basic starter template - you can begin coding right away and don't need an account to start

{% code overflow="wrap" lineNumbers="true" %}

```python
def setup():
  createCanvas(400,400)

def draw():
  background("red")
  drawTickAxes() 
```

{% endcode %}

* Code put into setup() will execute once, when the canvas initializes.&#x20;
* Code put into draw() will execute repeatedly, 60 times per second. Each execution is called a frame.
* Try out putting some code - for example from the Shapes section - into the setup() and draw() functions and see what happens! Happy Coding 😁

{% hint style="info" %}
Find these documents helpful? Let the people who made them help your child learn to code at [**Strivemath**](https://www.strivemath.com/)<mark style="color:blue;">**!**</mark>

We'd love to hear your Feedback/Comments [here](https://docs.google.com/forms/d/e/1FAIpQLSeqorBAGTya-YBRI-VFjJxtgQtCz3ucGDI96K96sNyuaGuvdw/viewform?usp=sf_link).
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://learnpython.strivemath.com/p5-python-web/readme.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
