我的意思是,如果我有列表对象['hello','how','are','you'],而我想转换为[hello,how,are,you]。 谢谢!
答案 0 :(得分:0)
如果只想打印它,可以执行以下操作:
a = ['hello' , 'how', 'are', 'you']
print(f'[{", ".join(a)}]')
# Or an easier way to understand what that line is doing:
result = "[" + ", ".join(a) + "]"
print(result)
输出:
[hello, how, are, you]
否则,如果您想将字符串转换为变量,则可以使用eval
,但我强烈不建议这样做,因为它可能不是您想要的。