Write any two features of python that make it user friendly
Answers
Explanation:
These are the few key features of Python:
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=111 and then x="I'm a string" without error
Python is well suited to object orientated programming in that it allows the definition of classes along with composition and inheritance. Python does not...
Features of Python
Easy to Code. Python is a very developer-friendly language which means that anyone and everyone can learn to code it in a couple of hours or days. ...
Open Source and Free. ...
Support for GUI. ...
Object-Oriented Approach. ...
High-Level Language. ...
Integrated by Nature. ...
Highly Portable. ...
Highly Dynamic.