|
|
| How do i get the length of a list in Python? If I have mylist = ["Micle", "23", "male"] the list length is 3. What function returns this length? Thank you. I tried length(mylist) and mylist.lengh nothing works :( Thank you! |
| did you try: [code:1]len(mylist)[/code:1] |