V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  virusdefender  ›  全部回复第 38 页 / 共 113 页
回复总数  2244
1 ... 34  35  36  37  38  39  40  41  42  43 ... 113  
2018-06-04 10:11:39 +08:00
回复了 kkhu2004 创建的主题 问与答 Python 的 strip()有坑啊!你们谁遇到了?
str.strip([chars])
Return a copy of the string with the leading and trailing characters removed. The chars argument is a string specifying the set of characters to be removed. If omitted or None, the chars argument defaults to removing whitespace. The chars argument is not a prefix or suffix; rather, all combinations of its values are stripped:

>>>
>>> ' spacious '.strip()
'spacious'
>>> 'www.example.com'.strip('cmowz.')
'example'
2018-05-23 12:57:20 +08:00
回复了 wsds 创建的主题 Python Python 如何执行纯 shell 脚本
@wsds #23 ...
2018-05-23 11:15:08 +08:00
回复了 wsds 创建的主题 Python Python 如何执行纯 shell 脚本
def run_sh(command, strict=True):
cmd = [b"bash"]
if strict:
cmd.append(b"-e")
return subprocess.run(cmd, input=command.encode("utf-8"), stdout=subprocess.PIPE, stderr=subprocess.PIPE, check=strict)
2018-05-21 07:07:54 +08:00
回复了 hansonwang99 创建的主题 程序员 RPC 框架实践之: Google gRPC
代码中中英文的引号都能错,真的测试运行过么?
2018-05-19 07:29:43 +08:00
回复了 mejee 创建的主题 奇思妙想 早睡早起之后,大家来一个早睡日?
最近都是六点起床,七点到公司上班,下午七点前回家,然后吃饭睡觉
2018-05-18 18:33:44 +08:00
回复了 gamexg 创建的主题 问与答 手机信号干扰 DisplayPort 信号?
包一层锡纸或者金属网试试?
2018-05-13 12:53:16 +08:00
回复了 checgg 创建的主题 问与答 请教 Python 如何调用 arm 编译的 so 文件?
strace python test.py 看看系统调用
2018-05-11 00:10:15 +08:00
回复了 myung 创建的主题 Django 如何通过一次 post,保存到 2 个表?
@myung #5 那就是你写错了,贴一下代码看看
2018-05-11 00:02:18 +08:00
回复了 myung 创建的主题 Django 如何通过一次 post,保存到 2 个表?
没懂你是什么问题,合并一下两个函数的代码不就可以了么
2018-05-01 13:58:03 +08:00
回复了 pppguest3962 创建的主题 服务器 请教是否有小区域封闭环境下,自建 CA 服务的教程?
2018-04-28 21:10:41 +08:00
回复了 hicola 创建的主题 Apple 求问 mac 上替代 sublime 的软件?
不激活又不是不能用
2018-04-28 20:35:39 +08:00
回复了 0576coder 创建的主题 程序员 我只想看看 curl 真正的执行过程
你需要的是 wireshark
2018-04-24 13:30:15 +08:00
回复了 pdog18 创建的主题 问与答 阿里有哪些项目开源后很好用,或者还持续维护的?
tengine
2018-04-20 18:17:12 +08:00
回复了 ionblue 创建的主题 问与答 大家 Linux 生产环境一般倾向于哪个系统?
Ubuntu
2018-04-20 14:21:18 +08:00
回复了 geekcorn 创建的主题 健康 肝损伤,原因查不出,请问有类似经历的 V 友吗?
吃中药么?
2018-04-17 16:08:15 +08:00
回复了 lukeshawn 创建的主题 Python 请问可以用 Python 解方程式吗?
z3 也不错
1 ... 34  35  36  37  38  39  40  41  42  43 ... 113  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1057 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 36ms · UTC 22:17 · PVG 06:17 · LAX 14:17 · JFK 17:17
Developed with CodeLauncher
♥ Do have faith in what you're doing.