>> x[2:10] # this prints from 'l' to 'd' allw-6ren">
gpt4 book ai didi

python - 我有一个 python 列表作为字符串,我想将它打印为间隔和顺序

转载 作者:太空宇宙 更新时间:2023-11-04 07:13:55 24 4
gpt4 key购买 nike

我有一个 python 列表,我想按顺序打印它们并在它们之间留出间隔

x = "hello world"
>>> x[2:10] # this prints from 'l' to 'd' allway

>>> x[2:10:2] # this prints from 'l' to 'd' in the order of two,
'lowr'

我怎样才能像'l o w r'一样打印它,在它们之间放置一个空格字符而不循环?所以它看起来像'l-o-w-r'

最佳答案

查看 Python 的 str.join()功能。它允许您加入任何可迭代对象,同时在 .join() 的引号 "" 之间插入任何内容。

像这样:

x = "hello world"

" ".join(x[2:10:2])

关于python - 我有一个 python 列表作为字符串,我想将它打印为间隔和顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55746652/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com