嗨,我有一个动态字符串,我想创建一个包含该字符串的列表。
Ex. a = "hello"
b = xxx(a) should give ['hello']
when I try
b = list(a), I get b = ['h','e','l','l','o']
我如何实现这一目标?谢谢。
嗨,我有一个动态字符串,我想创建一个包含该字符串的列表。
Ex. a = "hello"
b = xxx(a) should give ['hello']
when I try
b = list(a), I get b = ['h','e','l','l','o']
我如何实现这一目标?谢谢。