Re: How to convert this list to string?

2006-10-18 Thread Theerasak Photha
On 18 Oct 2006 00:20:50 -0700, Jia Lu [EMAIL PROTECTED] wrote:

 I want to get a string 2 3

  str(list[1:])
 '[2, 3]'

 How can I do that ?

' '.join(str(i) for i in list[1:])

-- Theerasak
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to convert this list to string?

2006-10-18 Thread Travis E. Oliphant
Jia Lu wrote:
 Hi all
 
  I have a list like:
 
 list
 [1, 2, 3]
 list[1:]
 [2, 3]
 
 I want to get a string 2 3
 
 str(list[1:])
 '[2, 3]'
 
 How can I do that ?
 

 .join(str(x) for x in list)


-Travis

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to convert this list to string?

2006-10-18 Thread Fredrik Lundh
Jia Lu wrote:

 Hi all
 
  I have a list like:
 
 list
 [1, 2, 3]
 list[1:]
 [2, 3]
 
 I want to get a string 2 3
 
 str(list[1:])
 '[2, 3]'
 
 How can I do that ?

 http://effbot.org/zone/python-list.htm#printing

/F

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to convert this list to string?

2006-10-18 Thread Ron Adam
Jia Lu wrote:
 Hi all
 
  I have a list like:
 
 list
 [1, 2, 3]
 list[1:]
 [2, 3]
 
 I want to get a string 2 3
 
 str(list[1:])
 '[2, 3]'
 
 How can I do that ?
 
 thanks

Just to be different from the other suggestions...

  a = [1, 2, 3]
  str(a[1:]).strip('[]').replace(',', '')
'2 3'

By the way.  It's a good idea to try not to use 'list' or other built-in names 
for your own objects.  Best to start with good habits so that you avoid odd 
hard 
to find bugs later.

Cheers,
Ron


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to convert this list to string?

2006-10-18 Thread Jia Lu
Thank you very much. I memoed all you views.

:)

-- 
http://mail.python.org/mailman/listinfo/python-list