string.replace

Darrell news at dorb.com
Thu Jul 22 18:06:42 EDT 1999


Works for me.
Upgrade your python version.
Python 1.5.2 (#0, Apr 13 1999, 10:51:12) [MSC 32 bit (Intel)] on w
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
>>> import sys, string
>>> line = 'cat "in" the hat'
>>> line = string.replace( line, '"', '')
>>> print line
cat in the hat
>>>

--
--Darrell
marlon <marlon at soda.CSUA.Berkeley.EDU> wrote in message
news:Pine.BSF.4.10.9907221446520.20655-100000 at soda.CSUA.Berkeley.EDU...
> can anyone tell me why this breaks?
>
> Python 1.4 (Nov  4 1997)  [GCC 2.7.2.3]
> Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
> >>> import sys, string
> >>> line = 'cat "in" the hat'
> >>> line = string.replace( line, '"', '')
> Traceback (innermost last):
>   File "<stdin>", line 1, in ?
> AttributeError: replace
> >>>
>
>
> _
>






More information about the Python-list mailing list