标签: python list python-2.7 variables
我正在使用python(版本2.7),我有一个名为characters('abc123')的变量。我希望能够拆分它,以便我有一个变量中的字符列表(['a','b','c','1','2','3'])。有谁知道怎么做?
答案 0 :(得分:0)
s = 'abc123' >>> list(s) ['a', 'b', 'c', '1', '2', '3']