27

Just started as in, I'm about an hour into a 4 hour intro video. Seeing two basic ways of manipulating things and don't understand the difference.

If I want to know the length of a string and I just guess at how to do it I would try one of these two things,

  1. Len(string)
  2. string.len()

What is the difference between these types of statements? How do I think about this to know which one I should expect to work?

you are viewing a single comment's thread
view the rest of the comments
[-] jjjalljs@ttrpg.network 15 points 1 month ago

len is a built-in function: https://docs.python.org/3/library/functions.html#len

When you do len("something") you are passing the string something to it, and it returns how long it is. You can pass it other things like lists or sets, and it will tell you how many things are in them, too.

>>> len
<built-in function len>
>>> len("something")
9

>>> len([1,2,3,4])
4
>>> len({"a", "b", "c"})
3

If you were to try to do "something".len() it would try to call the function "len" that exists on str. There isn't one.

>>> "something".len()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'str' object has no attribute 'len'

https://docs.python.org/3/library/stdtypes.html#textseq

Scroll down a little to "String Methods" and you can see what methods are available on strings.

This is kind of language specific. Now you know that when you want to know how long something is in Python, you generally use the built-in len. If you're dealing with some other type of object, you'd check what methods it provides and what it inherits from. There's a lot of documentation reading in software development. A good IDE also helps.

[-] charolastra@programming.dev 3 points 1 month ago* (last edited 1 month ago)

At the end of the day, len(ob) just defers to ob.__len__() so both are correct, just one's more functional and one's more object oriented.

[-] jjjalljs@ttrpg.network 2 points 1 month ago* (last edited 1 month ago)

Things prefixed with two underscores are considered private, and typically should not be accessed directly.

https://docs.python.org/3/tutorial/classes.html#private-variables

[-] charolastra@programming.dev 3 points 1 month ago* (last edited 1 month ago)

Keyword "typically". If I'm overriding dunder methods, then I'll typically need to call the super method as well. It's not like it's forbidden.

Consider the following:

class MyStr(str):
     def len(self):
          return len(self)
          # OR
          return self.__len__()

Both of the above return values are perfectly valid Python.

this post was submitted on 27 Jul 2024
27 points (93.5% liked)

Learn Programming

1616 readers
1 users here now

Posting Etiquette

  1. Ask the main part of your question in the title. This should be concise but informative.

  2. Provide everything up front. Don't make people fish for more details in the comments. Provide background information and examples.

  3. Be present for follow up questions. Don't ask for help and run away. Stick around to answer questions and provide more details.

  4. Ask about the problem you're trying to solve. Don't focus too much on debugging your exact solution, as you may be going down the wrong path. Include as much information as you can about what you ultimately are trying to achieve. See more on this here: https://xyproblem.info/

Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 1 year ago
MODERATORS