Results 1 issues of Anatoly Tverdovsky

I have a project with two files: `a.py`: ``` def p(x): print(f"Hello {x}") ``` `main.py`: ``` import a a.p("world") ``` My goal is to use `pyinstaller` to create a single...