Ask Your Question
0

converting a list to a text without copy-pasting

asked 10 years ago

algebraicallyclosed gravatar image

Hi, I have a list and I need to convert it to a text but i want to call this list, so I don't want to copy and paste the result in text = " "

I tried text = list(U) (just assume that U is callable, so list(U) gives anything in U as a list) but it didn't work.

Can anyone suggest a way?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
0

answered 10 years ago

calc314 gravatar image

updated 10 years ago

I will assume your list consists of strings. You can build a string using a loop.

L=['a','b','c']
text=''
for s in L: 
     text+=s

Or, more succinctly, you can use the python join command:

newtxt=''.join(L)
print newtxt
Preview: (hide)
link
0

answered 10 years ago

algebraicallyclosed gravatar image

updated 10 years ago

Thank you for answering. However, not those, but this worked; where

L = list(U); text = ''+str(L)

-For anyone who is also interested:)

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 10 years ago

Seen: 903 times

Last updated: Oct 16 '14