Features of Python


  • It is an Interpreted Language.{Note:Interpreter is program that execute the code line by line.}
  • Python is a case-sensitive Language.(It means that Lowercase and Uppercase letter treated differently.
  • It is an Object-Oriented Language.
  • Dynamically Typed Language.
  • Indentation (Fixed space) is used in place of Curly Braces({}).
  • Use Variable Without declaration.
  • Automatic Memory Management.

Comments

Post a Comment

Popular posts from this blog

Pre-defined Function in python

Comments in Python