如果我有一个清单:
list = [' 150',' 200',' 300']
我怎样才能提取'字符串值? (没有列表) 如果我切片[0,2]我得到一个列表。
list.pop(2)(列表中的第二个值)是获取字符串值而不是列表的唯一方法吗?
答案 0 :(得分:3)
只需将列表索引到包含所需值的位置:
>>> lst = ['150', '200', '300']
>>> lst[0] # Remember that indexing is 0-based in Python
'150'
>>> lst[1]
'200'
>>> lst[2]
'300'
>>>