如何剥离 Python 输出
我想剥离platform.linux_distribution()
。
输出是元组 ('Ubuntu', '11.10', 'oneiric')
但我想将其显示为 "Ubuntu 11.10 oneiric"
.group(1)
不起作用。
I want to strip platform.linux_distribution()
.
Output is tuple ('Ubuntu', '11.10', 'oneiric')
but I want to show it as "Ubuntu 11.10 oneriric"
.group(1)
is not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您正在寻找
" ".join()
< /a>:You're looking for
" ".join()
:这个怎么样:
How about this:
怎么样:
我使用的是 Mac,所以我没有
platform.linux_distribution()
,但看起来它应该返回一个数组。how about:
I'm on a mac, so I don't have
platform.linux_distribution()
, but it looks like it should return an array.