Re: string in files

2008-12-31 Thread Glauco
Steven D'Aprano ha scritto: On Tue, 30 Dec 2008 11:53:17 +0100, Glauco wrote: thanks brother i mean how do i particularly assign (u = this) (y = is) in the strings up there. i have been able to split strings with any character sign. If i'm not wrong

string in files

2008-12-30 Thread ibpet11
guys i need info on how to call up different words in a line of a file using python example : file = 'this is a python coding group' i want to assign a xter to this, is, a, python , coding and group thanks -- http://mail.python.org/mailman/listinfo/python-list

RE: string in files

2008-12-30 Thread Narasimhan Raghu-RBQG84
:43 PM To: python-list@python.org Subject: string in files guys i need info on how to call up different words in a line of a file using python example : file = 'this is a python coding group' i want to assign a xter to this, is, a, python , coding and group thanks -- http://mail.python.org/mailman

Re: string in files

2008-12-30 Thread ibpet11
@python.org] On Behalf Of ibpe...@gmail.com Sent: Tuesday, December 30, 2008 3:43 PM To: python-l...@python.org Subject: string in files guys i need info on how to call up different words in a line of a file using python example : file = 'this is a python coding group' i want to assign a xter

Re: string in files

2008-12-30 Thread Glauco
thanks brother i mean how do i particularly assign (u = this) (y = is) in the strings up there. i have been able to split strings with any character sign. If i'm not wrong this is simple with RE: In [1]: st = 'this is a python coding group' In [2]:

Re: string in files

2008-12-30 Thread Steve Holden
-bounces+rbqg84=motorola@python.org] On Behalf Of ibpe...@gmail.com Sent: Tuesday, December 30, 2008 3:43 PM To: python-l...@python.org Subject: string in files guys i need info on how to call up different words in a line of a file using python example : file = 'this is a python coding group

Re: string in files

2008-12-30 Thread Lie Ryan
On Tue, 30 Dec 2008 11:53:17 +0100, Glauco wrote: thanks brother i mean how do i particularly assign (u = this) (y = is) in the strings up there. i have been able to split strings with any character sign. If i'm not wrong this is simple with

Re: string in files

2008-12-30 Thread Steven D'Aprano
On Tue, 30 Dec 2008 11:53:17 +0100, Glauco wrote: thanks brother i mean how do i particularly assign (u = this) (y = is) in the strings up there. i have been able to split strings with any character sign. If i'm not wrong this is simple with