如何将 def stringParametre(x) x转换为列表,这样如果x为hello,那么它将变为像[“H”,“E”这样的列表“,”l“,”l“,”O“]。首都并不重要。
答案 0 :(得分:3)
请注意,如果您只想迭代字符串中的字符,则无需转换为列表:
for c in "hello":
# do something with c
作品
答案 1 :(得分:2)
以@ idjaw的评论为基础:
def stringParametre(x):
return list(x)
当然,如果x
不是字符串(或其他序列类型),则会出错。
答案 2 :(得分:2)
list(x)
OR
mylist = []
for c in x:
mylist.append(c)