> For the complete documentation index, see [llms.txt](https://python.jerryhobby.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://python.jerryhobby.com/introduction-to-python/types-of-python-programs.md).

# Types of Python Programs

With Python, you can create four main types of programs. In the beginning, you will work on the first type, Scripts. Just know there are ways to expand your skills into these other types of applications.

### Scripts

These are scripts that run in your console and provide basic text output. These scripts will run at your command prompt and output text into the terminal / console.

### Graphical Programs

Not as common as scripts, it is possible to write screens that show up in Windows and have animations for basic games, graphs, etc.

### Jupyter Pages

These are basically web pages that have sections of Python code built in. It allows people to execute the code fragments within the page. They are common for financial or statistical apps.

### Web Pages

You can write entire websites using Python. There is a couple ways of doing this. Basically it's an Python environment that generates web pages on the fly. You can make shopping carts or whatever type of website you need.

**Some content generated with AI**


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://python.jerryhobby.com/introduction-to-python/types-of-python-programs.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.
