# 2.1 Context Matters

#### Languages Require Context

Programming languages sometimes make more sense when viewed under the same lens as spoken languages as they share several important features. One such feature is that languages are always used in some *context*: why are we speaking in the first place?

Let's imagine you own a villa in France and after some time a property boundary dispute arises. To resolve this, you would need to know several things:

* The French language
* French property law
* Who your neighbours are
* What is the nature of the dispute?

While knowing how to speak the right language is helpful, it won't let you solve the boundary dispute by itself. This is much the same with programming languages.&#x20;

{% hint style="info" %}
While knowing the right language is helpful, it's only the first step. You'll need to know the context to resolve the problem.
{% endhint %}

Learning the Python language is a first step, and it's not too hard to do. However, learning the context you wish to apply a language in is equally important. Our next section covers the technologies we'll encounter when using Python in Dynamo.

#### Getting to Know the Gang

Learning the context involves becoming familiar with a few new technologies.\
Becoming a Python-Dynamo master requires knowledge of:

* The [IronPython](/dynamo-python-primer/hello-python/what-is-ironpython.md) programming language
* Your application's API (e.g. the Revit API)
* [The .NET Framework](/dynamo-python-primer/seeing-the-bigger-picture/what-is-the-.net-framework.md)
* Some key Dynamo libraries (e.g. [TransactionManager](/dynamo-python-primer/4-revit-specific-topics/working-with-transactions.md))

![Want to use Python in Dynamo? Don't worry, these guys have got your back.](/files/-LqlSvg0iElC1Q0rR1ay)

Don't worry about that list too much, this guide only assumes you know how to write a little Python (don't know Python yet? Start [here](/dynamo-python-primer/hello-python/python-introduction.md)!). The scripts you'll be writing will be employing a few lines of each of these technologies but you won't need to know them all back-to-front!


---

# 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://dynamopythonprimer.gitbook.io/dynamo-python-primer/seeing-the-bigger-picture/context-matters.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.
