gpt4 book ai didi

Python 将列表值转换为字符串

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

我将列表值存储为:

country = [u'USA']

我怎样才能把它变成“美国”。我试过 str(country),但没用。

最佳答案

对不在列表中的元素应用 str():

In [206]: country = [u'USA']

In [207]: country[0] = str(country[0])

In [208]: country
Out[208]: ['USA']

或者你可能是这个意思:

In [217]: country = [u'USA']

In [218]: country = str(country[0])

In [219]: country
Out[219]: 'USA'

关于Python 将列表值转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14016761/

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