Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 295 Bytes

strongly_typed.md

File metadata and controls

9 lines (6 loc) · 295 Bytes

Strongly Typed

  1. Python is strongly typed. What does it mean?
  2. Is it true even in case of a mutable object?

Solution

  1. It means the type of an object doesn't changes
  2. Yes, even for mutable types (such as List, Dictionary) it is still strongly typed and the type can't be changed