What does it mean that Python is strongly typed?
Audio flashcard · 0:15
Nortren·
What does it mean that Python is strongly typed?
0:15
Strongly typed means Python does not perform implicit type coercions between unrelated types. For example, adding a string and an integer raises a TypeError instead of silently converting one to the other. Type conversions must be explicit using functions like int, str, or float.
docs.python.org