Python enumerate() 函数
定义和用法
The enumerate()
函数接受一个集合(例如元组),并将其作为可枚举对象返回。
The enumerate()
函数添加了一个计数器作为可枚举对象的键。
语法
enumerate(iterable, start)
参数值
参数 | 描述 |
---|---|
iterable | 可迭代对象 |
start | 一个数字。定义可枚举对象的起始数字。默认值为 0 |
The enumerate()
函数接受一个集合(例如元组),并将其作为可枚举对象返回。
The enumerate()
函数添加了一个计数器作为可枚举对象的键。
enumerate(iterable, start)
参数 | 描述 |
---|---|
iterable | 可迭代对象 |
start | 一个数字。定义可枚举对象的起始数字。默认值为 0 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]