python中index元组与列表差异

1、index区分tuple与list的用法

元组可选区间

tuple.index(keyword,begin,end)

list不可选区间

list.index(keyword)

你可能感兴趣的:(python中index元组与列表差异)