python中,列表一般是没有索引,不能像pandas里面的序列和dataframe一样,方便的使用索引。但是如果想知道某一个元素在列表中的位置,就需要使用index比如
想要知道一个列表中,哪一个元素是none
post_clean.index(none)#post_clean是一个列表
这时返回列表中的索引值。
如果想知道多个元素,那么使用
print([ i for i, x in enumerate(post_clean) if x == none])
python中,列表一般是没有索引,不能像pandas里面的序列和dataframe一样,方便的使用索引。但是如果想知道某一个元素在列表中的位置,就需要使用index比如
想要知道一个列表中,哪一个元素是none
post_clean.index(none)#post_clean是一个列表
这时返回列表中的索引值。
如果想知道多个元素,那么使用
print([ i for i, x in enumerate(post_clean) if x == none])