top of page
Writer's pictureNazeeruddin

What is Python? Explain some characteristics of python?

Updated: Feb 10, 2023

  • Python is an interpreted language. That means that, unlike languages like C and its variants, Python does not need to be compiled before it is run. Other interpreted languages include PHP and Ruby.

  • Python is dynamically typed, this means that you don't need to state the types of variables when you declare them or anything like that. You can do things like x=10 and then x="Hello World" without error

  • Python is well suited to object orientated programming in that it allows the definition of classes along with composition and inheritance.

  • In Python, functions are first-class objects. This means that they can be assigned to variables, returned from other functions and passed into functions.




Thanks for reading!!!
Your Rating and Review will be appreciated!!

63 views0 comments

Recent Posts

See All

ความคิดเห็น

ได้รับ 0 เต็ม 5 ดาว
ยังไม่มีการให้คะแนน

ให้คะแนน
bottom of page