Python课上练习解释
Posted 圆滚滚的小伙鸡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python课上练习解释相关的知识,希望对你有一定的参考价值。
将文件对应的索引打印出来 test = input(">>>>") print(test) l = len(test) print(l) t = range(l) for item in t: print(item,test[item]) # 方法精简2 test = input(">>>>") for item in range(0,len(test)): print(item,test[item])
以上是关于Python课上练习解释的主要内容,如果未能解决你的问题,请参考以下文章