# Python

## Installation

```bash
$ sudo apt install python3-pip
```

## Version

```bash
$ python --version
Python 3.10.12
```

## Example

````{tab} Code
`hello.py`:

```py
print("Hello, World!")
```
````

````{tab} Terminal
**`python3` Ver.**

```bash
$ python3 hello.py
Hello, World!
```

**REPL Ver.**

```bash
$ python3
Python 3.10.12 (main, Sep 11 2024, 15:47:36) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello, World!")
Hello, World!
```
````
