只有注册用户登录后才能阅读该文。 阅读全文
摘要:
Running on windows platform, give me an error as below: Fix method: add freeze_support 阅读全文
摘要:
15年16年接触python时候,还不知道这个函数,只知道dict的无序,造成了一些麻烦 今天view 代码,发现了 OrderedDict() 在python2.7中比较吃内存 pop(获取指定key的value,并在字典中删除) 阅读全文
摘要:
new_note_001 #!/usr/local/bin/env python3.8 import sys def main(): print(' '.join(sys.argv[1:])) if __name__=='__main__': main() ****chmod +x a.py ** 阅读全文
摘要:
map: 最大长度输出; zip: 最短输出; third: 有序排列; 阅读全文
摘要:
查ip 时,使用 ip==10.224.37.18 发现无效 使用 ip.dst, 查到了 Actually for some reason wireshark uses two different kind of filter syntax: 1. one on display filter; o 阅读全文
摘要:
log.txt exit remotessh done ``` 阅读全文
摘要:
多次提醒我,为变量取个合适的名字, so cute person: 每个参数一行好么 菇凉? 这样写for ok? 不要在代码里用 好么? 用 constant 判断 是否为 unicode 判断是否为ascii, 返回true 为english, 返回false 为其他字符 ss = all(or 阅读全文
摘要:
linux , is “/” , while windows is “\” 阅读全文
摘要:
python中unicode, hex, bin之间的转换 背景 在smb中有个feature , 需要改动文件权限dacl,然后确认是否有收到notify。一直得不到这个dacl的formal是什么样子的,于是pdb中打印出原始dacl,是个类似于 的字符串str,然鹅无法用str的方法来操作它。 阅读全文