vote up 0 vote down star
for a in ('90','52.6', '26.5'):
    if a == '90':
        z = (' 0',)
    elif a == '52.6':
        z = ('0', '5')
    else:
        z = ('25')

    for b in z:

        cmd = exepath + ' -a ' + str(a) + ' -b ' + str(b) 
        process = Popen(cmd, shell=True, stderr=STDOUT, stdout=PIPE)

        outputstring = process.communicate()[0]
        outputlist = outputstring.splitlines()

        for i in outputlist:
            if i.find('The student says') != -1:
                print i

Working on an assignment and this a snippet of my code. There is a portion above this code but all it's doing is defining exepath and just printing exepath to the screen. When I run this, I don't get an error or anything but the program just ends when put into the command prompt. Why? and how do I fix it?

Sorry for the quotes but the problem is it gives me nothing back it just exits... What could the problem be?

flag

5  
Your quotes are a mess. Is this snippet correct? – S.Lott Jul 8 at 15:54
When you add print statements inside each for loop, what do you see? – S.Lott Jul 9 at 1:45

3 Answers

vote up 1 vote down check

Looking at your code it will only actually output something if the i.find('The student says') successfully matches so you could either run this in a debugger or add some print statements to see what is in outputstring for each time round the loop.

link|flag
vote up 6 vote down

you are missing quotes around you first for statement try

for a in ('90','52.6', '26.5'):
link|flag
Ending quotes FTW! – Fry Jul 8 at 15:58
1  
Indeed. The OP might consider using a text editor with syntax highlighting to catch this sort of thing. – Kristo Jul 8 at 16:05
One doesn't need to use a special editor when posting here, since Stack Overflow helpfully shows a highlighted version of the code - as seen above. – Vinay Sajip Jul 8 at 17:13
vote up 1 vote down

Once you've fixed the missing quote, you'll get weird behavior from this part:

else:
    z = ('25')

for b in z:

the parentheses here do nothing at all, and b in the loop will be '2' then '5'. You probably mean to use, instead:

    z = ('25',)

which makes z a tuple with just one item (the trailing comma here is what tells the Python compiler that it's a tuple -- would work just as well w/o the parentheses), so b in the loop will be '25'.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.