摘要:
【list&tuple&dict】 # 栗子 list排序 阅读全文
摘要:
【练习】 #练习1:format print(format(3.44444,'.3e')) #3.444e+00 #练习2:findall() & finditer()import recontent = '''email:12345678@163.comemail:2345678@163a.com 阅读全文
摘要:
【bytes】 英文文档: class bytes([source[, encoding[, errors]]]) Return a new “bytes” object, which is an immutable sequence of integers in the range 0 <= x 阅读全文
摘要:
【python web框架之 bobo的安装配置】 【Mac】 我的Mac环境,python3.5 1. 安装bobo : >>> pip3 install bobo 2. 配置环境变量: $: vi ~/.bash_profile 加一行:alias bobo = "地址" (我刚install完 阅读全文
摘要:
1. from Crypto.Cipher import AES File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/Crypto/Cipher/__init__.py", line 阅读全文
摘要:
1. 杀掉占用某端口的进程: lsof -i:9000 -> 确认PID kill PID 2. 环境变量: 直接用{PATH}:路径 的办法,经常不好用,我的解决办法: vi ~/.bash_profile 进入这个级别的环境变量配置文件 加一行:alias 变量名 = “文件地址” 【备注】记得 阅读全文
摘要:
1. 用pycharm安装第三方包失败,报类似于“sort"的错误,就转战终端 2. Mac终端安装第三包失败,报类似于“ PermissionError: [Errno 13] Permission denied: '/Library/Frameworks/Python.framework/Ver 阅读全文
摘要:
一句话总结: 阅读全文