.pyw files in python program

后端 未结 2 1499
余生分开走
余生分开走 2020-12-02 16:45

I am new to Python programming. Can anybody provide an explanation on what a *.pyw file is and how it works.

2条回答
  •  鱼传尺愫
    2020-12-02 17:44

    The PYW file type is primarily associated with Python by Python Software Foundation. PYW files are used in Windows to indicate a script needs to be run using PYTHONW. EXE instead of PYTHON. EXE in order to prevent a DOS console from popping up to display the output.

提交回复
热议问题