logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

linux禁止root账户远程访问

root无法通过mobaxterm远程访问服务器解决办法

#linux#服务器#ssh
一种使用Windows下的python语言获取ping网络IP链接状态的方法

#!/usr/bin/python3#-*-coding:utf8-*-#!/usr/bin/pythonimportsubprocessimportredefLinkState(ip):returngetLinkState(ip)#获取链路状态defgetLinkState(ip):#运行ping程序p=subprocess.Popen(["ping.exe",ip],st...

#python#windows
用python写的一个简单的串口程序实现自动化测试

用例1:#!/usr/bin/python# -*- coding: UTF-8 -*-import serialfrom time import sleepdef recv(serial):while True:data = serial.readline()if data == '':continueelse:breaksleep(0.02)re...

#python
到底了