up vote 1 down vote favorite
share [g+] share [fb]

In C/C++:

for(int i=0;i<=5;i++)

In Python:

for i in range(0,5)

Question is:

s=[1,2,3,4,1]

for i in s:
    for j in s:

Here i wanna make second for loop j=1 (j value should be start with 1 like this s[1]=2).How do i pass that value.

link|improve this question
4  
I guess this should be answered on SO. – Mehper C. Palavuzlar Dec 16 '09 at 10:59
For the questions on programming go for stackoverflow.com .. You will really get good help their .. that too in very short time .. You may get to know many more things than your expectation .. – infant programmer 'Aravind' Dec 16 '09 at 11:48
I have voted you up (to 20) .. Now .. Accept the answer which you think helped .. – infant programmer 'Aravind' Dec 16 '09 at 11:49
feedback

migrated from superuser.com Dec 16 '09 at 19:18

This question came from our site for computer enthusiasts and power users.

1 Answer

You should ask this on stackoverflow, but the answer is (if I got you right):

for i in s:
   for j in s[1:]:

Read this chapter about lists in python, this will help you.

link|improve this answer
Thanks.. Mr.Felix – Aravind Dec 16 '09 at 11:32
If the solution helps you, select the checkmark beside this answer. – Felix Kling Dec 16 '09 at 11:37
feedback

Your Answer

 
or
required, but never shown