1. What are the advantages of Python programming language ?
2. What are some limitations of Python programming language ?
3. In how many different ways, can you work in Python ?
Answers
Answer:
1.Python's Advantages
Simple. Python is a readable and understandable language. ...
Free of charge. This programming technology is free and open. ...
Compatible. Python offers compatibility with various platforms. ...
Object-oriented. Python supports procedure-oriented and object-oriented programming. ...
Various libraries.
2.Some Limitations of Python
1) Performance and Speed. ...
2) Incompatibility of Two Versions. ...
3) Application Portability. ...
4) Requires Additional Testing. ...
5) Lacks Web Development Capabilities.
6) Weak in Mobile Computing. ...
7) Depends on Third-Party Frameworks and Libraries. ...
8) No Option to Embed Block Comments.
3.Generally, five different ways of operation programs are there through the Python interpreter: You can run python programs mainly in two ways, first by typing commands directly in python software shell or run program storing it in a file
MARK BRAINLIEST
Answer:
1.) The advantages of using Python are as follows :
- Easy to use -- Python is compact and very easy to use object-oriented programming language with very simple syntax rules. It is a very high level programming language and hence is a programmer-friendly language.
- Cross-platform language -- Python can run equally well on variety of platforms – Windows , Linux/UNIX, Macintosh, supercomputers, smart phones, etc. This makes Python a cross-platform language, in other words, a portable language.
- Expressive language -- Python is an expressive language - fewer lines of code and simpler syntax.
- Interpreted language -- Python is an interpreted language, not a compiled language. It makes Python an easy-to-debug language and hence suitable for beginners to advanced users.
- It's Completeness -- For most types of required functionality is available through various modules of python standard library.
- Free and Open source -- Python language is freely available along with its source code.
2.) The limitations of Python are as follows :
- Not the fastest language -- Python is an interpreted language not a fully compiled one. Fully compiled languages are faster than the interpreted counterparts.
- Lesser libraries -- Python offers library support for almost all computing programs, but it's library is still not competent with languages like C, Java, Perl as they have larger collections available.
- Not strong on Type-binding -- Python interpreter is not very strong on catching 'Type-mismatch' issues.
- Not easily convertible -- Because of it's lack of syntax, Python is an easy language to program but it becomes a disadvantage when it comes to translating a program into another programming languages.
3.) You can work in Python in following different ways :
- Interactive mode (also known as the Immediate mode)
- Script mode