> For the complete documentation index, see [llms.txt](https://pointsource.gitbook.io/crowwrite/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pointsource.gitbook.io/crowwrite/2024/0823-same-name-of-some-variable.md).

# 0823-same name of some variable

```python
import numpy as np

def lonlat(a, b):
    return a + b

def hi(x, y, lonlat=True):
    if lonlat:
        print(f'{x=}')
    else:
        print(f'{y=}')

hi(3, 4)
```
