Hi, this is my first forum message so I'll make a brief introduction. I'm from Canada and I am Computer Science student. I enjoy working with computers, specially web programming. It has come to my attention (and also a school requirement) to learn Python. So here I am with my first question:
Suppose I have the following list:
list = ["CANADA", "HELLO", "I TOLD YOU SO"]
And I want to make each element from list lowercase. This is what I have so far:
for char in list:
char.lower()
That will lowercase each of my elements. Up till that part everything is fine. However, let's say I want to return the string again, but this time. With all its elements properly lowercased. And this is where I'm stuck. I can't think of a way to do this.
Any help / ideas / suggestions will be greatly appreciated.