10 字典中enumerate() 的用法

Posted wssaried

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10 字典中enumerate() 的用法相关的知识,希望对你有一定的参考价值。

li = {"alex"," aric","Alex","Tony","rain"}
for i,j in enumerate(li,1):
    new_j = j.strip()
    print(i,new_j)

 

 

 RESTART: C:/Users/wssar/AppData/Local/Programs/Python/Python37-32/1002q3.py
1 alex
2 Tony
3 Alex
4 aric
5 rain
>>>










以上是关于10 字典中enumerate() 的用法的主要内容,如果未能解决你的问题,请参考以下文章

python enumerate用法总结

python enumerate用法总结

python enumerate用法总结

10 字典中enumerate() 的用法

Python中enumerate用法详解

Python中enumerate用法详解