摘要:
In [30]: a = '34c dc,,,..//[];"\';123456 7890-=!@#$%^&*()_+' In [31]: b = '你好 ,。/?》《:“;‘{}【】|、!@#¥%……&*()——+扫帚qq11' In [32]: def is_chinese(chr): ...: 阅读全文
摘要:
set tabstop=4 set expandtab set shiftwidth=4 syntax on syntax enable set number set cursorline set hlsearch set background=dark set termguicolors set 阅读全文
摘要:
今天发现用taskkill /im需要管理员权限, 而taskkill /pid不需要 import os def kill_process_by_name(process_name): for i in os.popen('tasklist').read().split('\n'): if pro 阅读全文