Anoop wrote:
> Hi All,
>
> I am getting the following error while trying to use deprecation
>
> Please help
>
li = ["a", "b", "mpilgrim", "z", "example"]
newname = string.joinfields (li[:-1], ".")
newname
> 'a.b.mpilgrim.z'
newname = li[:-1].joinfields(".")
> Traceback (most
Hello,
Anoop wrote:
> I am getting the following error while trying to use deprecation
>
> Please help
>
li = ["a", "b", "mpilgrim", "z", "example"]
newname = string.joinfields (li[:-1], ".")
newname
> 'a.b.mpilgrim.z'
newname = li[:-1].joinfields(".")
> Traceback (most rece
Anoop wrote:
> Hi All,
>
> I am getting the following error while trying to use deprecation
>
> Please help
>
> >>> li = ["a", "b", "mpilgrim", "z", "example"]
> >>> newname = string.joinfields (li[:-1], ".")
> >>> newname
> 'a.b.mpilgrim.z'
> >>> newname = li[:-1].joinfields(".")
> Traceback (mos
"Anoop" wrote:
> I am getting the following error while trying to use deprecation
deprecation ?
li = ["a", "b", "mpilgrim", "z", "example"]
newname = string.joinfields (li[:-1], ".")
newname
> 'a.b.mpilgrim.z'
newname = li[:-1].joinfields(".")
> Traceback (most recent call la
Hi All,
I am getting the following error while trying to use deprecation
Please help
>>> li = ["a", "b", "mpilgrim", "z", "example"]
>>> newname = string.joinfields (li[:-1], ".")
>>> newname
'a.b.mpilgrim.z'
>>> newname = li[:-1].joinfields(".")
Traceback (most recent call last):
File "", lin