Computer Science

What are some limitations of Python programming language?

Getting Started

30 Likes

Answer

Some limitations of Python programming language are:

  1. Not the Fastest Language — As Python is an interpreted language so its execution-times are not that fast compared to some compiled languages.
  2. Lesser Libraries than C, Java, Perl — Library collection of C, Java, Perl is better than Python.
  3. Not strong on Type-Binding — Python interpreter is not very strong on catching 'Type-Mismatch' issues.
  4. Not easily convertible — Translating Python programs to other languages is difficult due to its lack of syntax.

Answered By

13 Likes


Related Questions