Re: difference between string and list

2007-02-27 Thread lincoln rutledge
Hi Skip, Okay, I actually have those pages up in my browser. I found the string methods: http://docs.python.org/lib/string-methods.html But I am having trouble finding the same information for lists... Thanks I will look into it some more, Lincoln >>> <[EMAIL PROTECTED]> 02/27/07 3:28 PM >>>

difference between string and list

2007-02-27 Thread lincoln rutledge
I'm having trouble figuring out the difference between a string and a list. I know that: string = "foo bar" is a list of characters, "foo bar", and string[0] is "f". while: list = ["foo", "bar"] and list[0] is "foo". strings have methods like string.count("f") returns 1. What methods do lists