global variable in Python

```
x = "global"

def func():
  print(x)

func()
```