what is Dynamic Typing of Python?
Answers
Answered by
1
Answer:
- Python is a dynamically-typed language.
- Java is a statically-typed language.
- In a weakly typed language, variables can be implicitly coerced to unrelated types, whereas in a strongly typed language they cannot, and an explicit conversion is required.
Similar questions