重新建立列表alist,然后把alist中的“张三”转换成列表x,转换后,x应为["张",“三”]。

img


alist = ['张三']
blist = []
for i in alist[0]:
  blist,append(i)
alist = blist