gpt4 book ai didi

Python字符串拆分

转载 作者:行者123 更新时间:2023-11-28 19:49:43 26 4
gpt4 key购买 nike

我需要取一个十六进制对,例如 7A 并将其分解为 7A 作为单独的变量以供进一步操作。拆分此字符串的正确方法是什么,因为我没有尝试删除任何字符,而且我没有任何分隔符?

最佳答案

您可以使用 list :

list('7A') 将返回包含 7 和 A 的列表:

['7', 'A'] #Note that the single quote will not appear when you print the content :)

(list('7A')[0] 包含 7 而 list('7A')[1] 包含 A)

或通过:

[x for x in '7A']

如果你的字符串中有超过 2 个字符并且你写:

lst = list(youtString)

然后 lst 将包含字符串的所有字符。

关于Python字符串拆分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15886857/

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