* Tim Johnson <[EMAIL PROTECTED]> [051207 15:56]:
> I must be having a Senior Moment here, but the following
> baffles me:
> >>> label = 'this is "quoted"'
> >>> label.replace('"','\"')
> 'this is "quoted"'
> ## This works
> >>> label.replace('"','\'')
> "this is 'quoted'"
 
  <blush>
  What I should have been using is
  label.replace('"','\\"')
  :-) Nevermind.
  tj
  
> What am I missing here?
> thanks
> tim
> 
> -- 
> Tim Johnson <[EMAIL PROTECTED]>
>       http://www.alaska-internet-solutions.com

-- 
Tim Johnson <[EMAIL PROTECTED]>
      http://www.alaska-internet-solutions.com
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to