Hi!

>>> while True:
> ...     try:
> ...         d[slice0.next()] = slice1.next()
> ...     except: StopIteration
> ...         break
> ...  

###

while True:
 try:
  d[s0.next()] = s1.next()
 except StopIteration: # wherein we point out a wayward colon
  break

###

Took me a while to figure out why I kept getting error messages about "break":

try:
 something()
except YourExceptionHere:
 something_else()

Misplaced colon. Why those sneaky little...

Cheers,
Pat
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to