# Hello, World! — Python

Source: https://www.geekswithgeeks.com/en/python/py-hello-world

> One line, plus the modern way to insert values.

## The program

Save as `hello.py`, then `python3 hello.py`.

```python
print("Hello, World!")
```

Output:

```
Hello, World!
```

## f-strings

The modern way to build text with values.

```python
name = "Ada"
print(f"Hello, {name}!")
```

Output:

```
Hello, Ada!
```

## vs C

No `#include`, no `main`, no semicolons, no compile step.
