如何使用"touch"命令创建.py文件?

How to use the "touch" command to create a .py file?

当我尝试使用 touch 命令时出现错误提示:'touch' 未被识别为内部或外部命令、可运行程序或批处理文件。

不要对 windows

使用 touch 命令

使用带有重定向操作的echo 命令使用 > 覆盖和 >> 追加

c:\Windows\path>echo "" > file.py

touch 命令仅适用于基于 Unix 的 OS。

但是,您可以通过 运行 在 Windows 上执行相同的操作:

type nul > your_file.py