python while loop

Posted by Bunny Rabbit on Stack Overflow See other posts from Stack Overflow or by Bunny Rabbit
Published on 2010-04-19T10:31:04Z Indexed on 2010/04/19 10:33 UTC
Read the original article Hit count: 250

Filed under:
 def merge(l1,l2):
 i=0;
 while((l1[i]!=none)||(l2[i]!=none)):

SyntaxError: invalid syntax being a newbie i can't figure out whats wrong with the abouve code.

© Stack Overflow or respective owner

Related posts about python