list to string

glen mettler glen.mettler at home.com
Mon Feb 26 21:42:12 EST 2001


These commands will turn a string into a list:
myword="dog"
mywordlist=list(myword)
result = ["d","o","g"]

is there a command/function that can take the list ["d","o","g"] and make it a string "dog"?

Glen






More information about the Python-list mailing list