摘要: 输出 阅读全文
posted @ 2019-05-06 23:43 anobscureretreat 阅读(240) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-06 23:07 anobscureretreat 阅读(2701) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-06 21:59 anobscureretreat 阅读(1953) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-06 21:20 anobscureretreat 阅读(712) 评论(0) 推荐(0)
摘要: brew install nmap 阅读全文
posted @ 2019-05-06 12:55 anobscureretreat 阅读(1883) 评论(0) 推荐(0)
摘要: #coding = utf-8 import os,os.path import threading import time lock = threading.RLock() def action(ip): result = "ip.txt" return1 = os.system('ping -n 2 -w 1 %s' % ip) # 每个ip ping2次,等待时间为... 阅读全文
posted @ 2019-05-06 12:50 anobscureretreat 阅读(314) 评论(0) 推荐(0)
摘要: import math def deal(yaw): if(yaw<0): print(-(abs(yaw)/math.pi)*180) print(math.degrees(yaw)) else: print((abs(yaw)/math.pi)*180) ... 阅读全文
posted @ 2019-05-06 11:12 anobscureretreat 阅读(785) 评论(0) 推荐(0)