您的位置:首页 > 编程语言 > Python开发

Python单层for循环

2018-01-26 10:55 260 查看
# -*- coding: UTF-8 -*-

I0 = [1,2,3];
I1 = [4,5,6];

print 'connect I0 and I1', I0 + I1

num0 = len(I0)
num1 = len(I1)
print 'length of I0: ', num0

v1 = range(0,num0)
print 'all elements of v1: ', v1

I3 = range(0,num0)
for i in v1:
I3[i] = I0[i] + I1[i]
print 'the', i, 'th element in I3: ', I3[i]

print('Good bye')


运行结果:

connect I0 and I1 [1, 2, 3, 4, 5, 6]
length of I0:  3
all elements of v1:  [0, 1, 2]
the 0 th element in I3:  5
the 1 th element in I3:  7
the 2 th element in I3:  9
Good bye
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: