摘要:
格式化字符串转换成字典 问题: “a=1,b=2,c=3”要转换成字典:{ ‘a’:1,‘b’:2,‘c’:3}有什么方便快捷的方法呢? 解答: s = 'a=1,b=2,c=3'dict((l.split('=') for l in s.split(',')))如果 要把value转换成int型的d = dict(((lambda i: (i[0], int(i[1])))(l.spli... 阅读全文
摘要:
Q1:pefile is out of date 现象:ERROR: Your version of pefile is out of date. Please update to the latest version on https://github.com/erocarrera/pefile 解决方法:https... 阅读全文
摘要:
添加网卡 sudo vi /etc/network/interfaces #添加下面的配置 >>>>>>>> auto tap0 iface tap0 inet manual up ifconfig $IFACE 0.0.0.0 up down ifconfig $IFACE down tunctl_user jack auto br0 iface br0 inet static... 阅读全文
摘要:
VMware虚拟机版本:9.0.1 build-894247主机OS:WIN8对于VMware虚拟机偶尔无法实现拖曳功能,一般有用的解决办法就是重启主机,其实就是重启VMware服务。cmd——services.msc,找到VMware服务新建restart_vmsvc.bat@echo stop VMware Services net stop VMwareHostd net stop VMAuthdService net stop VMnetDHCP net stop "VMware NAT Service" net stop VMUSBArbService@echo 阅读全文