gpt4 book ai didi

python - 获取列表中第一个字符串的第一个字符?

转载 作者:IT老高 更新时间:2023-10-28 21:33:27 28 4
gpt4 key购买 nike

如何从 Python 列表中的第一个字符串中获取第一个字符?

似乎我可以使用 mylist[0][1:] 但这并没有给我第一个字符。

>>> mylist = []
>>> mylist.append("asdf")
>>> mylist.append("jkl;")
>>> mylist[0][1:]
'sdf'

最佳答案

你几乎是对的。最简单的方法是

mylist[0][0]   # get the first character from the first item in the list

但是

mylist[0][:1]  # get up to the first character in the first item in the list

也可以。

您想在第一个字符(字符零)之后结束,而不是在第一个字符(字符零)之后开始,这就是您问题中代码的含义.

关于python - 获取列表中第一个字符串的第一个字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7108080/

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