What are the features of Python Programming language?

: 648
Paper : Python FAQ (Frequently Asked Questions and answers) for freshers | Platform : Object-oriented programming Language | Category : Programming FAQs

Features of Python Programming language:

  • It is a dynamically typed language. It means that there is no need to declare the data type of the variable.
  • It is interpreted language. It means it does not need to compile before the run. It checks the code line by line and if an error encountered, it will display an error message.
  • Python is an object-oriented programming language. It allows the concept of classes along with inheritance and composition. 
  • It is easy to understand and write but takes more in execution.