标签:ict 对象 while 元素 for循环 存在 转换 code 列表
print(li[0]) print(li[3:-1])
>>> s="abcdef" >>> new_li = list(s) >>> print(new_li) [‘a‘,‘ ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘]
python 列表list相关知识
原文地址:https://www.cnblogs.com/eleanorye/p/10120791.html