Explain strongly typed feature of python.
Answers
Answered by
1
Python is both a strongly typed and a dynamically typed language. Strong typing means that variables do have a type and that the type matters when performing operations on a variable. ... For example Python allows one to add an integer and a floating point number, but adding an integer to a string produces error.
Answered by
1
Explanation:
Python is both a strongly typed and a dynamically typed language. Strong typing means that variables do have a type and that the type matters when performing operations on a variable. ... For example Python allows one to add an integer and a floating point number, but adding an integer to a string produces error.
Similar questions