Friday, August 24, 2018

Python has loosely type language, Because of datatype variable can be changed dynamically.

  • We don't need to specify datatype at the time of declaring or defining the variable.
  • Its automatically set datatype as per the variable value.
  • C, Java has strictly datatype language.
    • In C or JAVA language, we have to specify datatype at the time of declaring any variable & it can't be change dynamically.