• Ephera@lemmy.ml
      link
      fedilink
      arrow-up
      11
      arrow-down
      1
      ·
      26 days ago

      Neither of those provide type inference? Type inference is when you give the compiler only occasional type hints and it can still figure out what the types are behind the scenes.

      For example:

      name = "World"
      greeting = "Hello " + name
      compile_error = greeting / 42
      

      In a type-inferred language, the compiler would automatically know that:

      1. the first line is of type String, because it’s trivially initiated as one.
      2. the second line is of type String, because String + String results in a String.
      3. the third line is non-sense, because greeting is a String and cannot be divided by a number. It could tell this before you run the program.

      Mypy on the other hand can only tell these things, if you give the first two lines an explicit type hint:

      name: String = "World"
      greeting: String = "Hello " + name
      

      Having to do this on every line of code is extremely noisy and makes refactoring annoying. I can absolutely understand that Python folks think you get productivity gains from duck typing, if this is the version of static typing they’re presented.

      And we did excessively use mypy + type hints + pydantic on my most recent Python project. These are not the silver bullet you think they are…