本文介绍了对于y中的x,在python中键入iteration。我能找出我目前正在进行的迭代吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我对Python中的循环结构有一个疑问: for x in y:在我的情况下,y是从文件读取的行,x是单独的字符。我想在输出中的每对字符后面加一个空格,如下所示: aa bb cc dd 等等。所以,我想知道当前的迭代。是否可能,或者我是否需要使用更传统的C风格用于索引循环?

I have a question about the loop construct in Python in the form of: for x in y: In my case y is a line read from a file and x is separate characters. I would like to put a space after every pair of characters in the output, like this: aa bb cc dd etc. So, I would like to know the current iteration. Is it possible, or do I need to use a more traditional C style for loop with an index?

推荐答案

for i,x in enumerate(y):
    ....

这篇关于对于y中的x,在python中键入iteration。我能找出我目前正在进行的迭代吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 04:44