我將如何在python中爲循環迭代1到特定值?在python中迭代到第n個值
我可以在Python列表上迭代,如:
for x in l:
print x
不過。
如果我想從1迭代到個數字,在MATLAB我會做:
str = "abcd"
for i=1:z
for j=1:y
if s(:,i)==s(j,:)'
Seq(i)=str(j);
end
end
end
我怎麼會在Python迭代這樣?