windows python 根据端口关闭进例子
时间: 2023-06-08 18:05:13 浏览: 102
python关闭占用端口方式
以下是一个关闭指定端口的Python示例代码:
```python
import os
# 获取要关闭的端口号
port = input("请输入要关闭的端口号:")
# 使用Windows命令行关闭指定端口
os.system(f"netstat -ano | findstr :{port} | findstr LISTENING && taskkill /PID `netstat -ano | findstr :{port} | findstr LISTENING | awk '{{print $5;}}'` /F > nul")
```
你可以将端口号作为输入来运行此代码,该代码将使用Windows命令行执行`netstat`和`taskkill`命令来关闭指定端口。注意,这段代码仅适用于Windows操作系统。
阅读全文