Learn Python Training from the Best Tutors
Search in
Python has notable strengths:
clean, concise, readable syntax
rich libraries
tons of documentation and user support
Python also has notable weaknesses:
It’s not as versatile as Java or C++. There are many areas where you simply cannot use Python.
Python is among the slowest of the major programming languages in terms of execution speed.
Python is hobbled by the GIL (global interpreter lock) for concurrent programming.
Sometimes, you want or need hard static typing, not merely type annotations.
Python has a stupid implementation of lambdas: you cannot have multiple lines!
Python has just about the stupidest OOP implementation out there:
You “hide” instance variables using underscores as a prefix, but they aren’t really hidden.
You must always pass self (or whatever name you like) as the first argument to an instance method in its definition. But this is inconsistent with the actual method call signature! Example:
class Die:
def setSides(self, sides): # two args
self.numSides = sides
def main():
die1 = Die()
die1.setSides(3) # one arg - WTF?
You can have myList.append() but not myList.len(). You can use len(myList), though. WTF? Isn’t Python supposed to be object-oriented?
Also, while Python’s Off-side rule syntax is highly praised, it’s also highly criticized.
I much prefer Smalltalk (Pharo) over Python. Smalltalk is a much, much simpler and easier language than Python.
I find Smalltalk more versatile than Python, too.
Smalltalk is not hobbled by the GIL.
Smalltalk has lovely lambdas.
Smalltalk’s OOP implementation is as clean and pure as the driven snow. There is no better OOP language.
read lessRelated Questions
I have passed Btech Electronics and Communication in 2015 and as you all know in ECE there is little knowledge of programming. And i want to learn Python from scratch. How much time it'll take to get a job after learning Python.
I want to learn Python but I dont know which tool is better for the future? and i want to get a job in less time. I am a fresher, 2017 passed out.
which is best in Rpa and python
Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com
Ask a QuestionRecommended Articles
Top 5 reasons why you should learn Python
Python is one of the most popular programming languages in the world. It is general-purpose, object oriented, high-level programming language used in a number of programming fields. Python is a great programming language to learn as it will introduce you to the world of programming. If you are from the technical background...
Learn Microsoft Excel
Microsoft Excel is an electronic spreadsheet tool which is commonly used for financial and statistical data processing. It has been developed by Microsoft and forms a major component of the widely used Microsoft Office. From individual users to the top IT companies, Excel is used worldwide. Excel is one of the most important...
Make a Career in Mobile Application Programming
Almost all of us, inside the pocket, bag or on the table have a mobile phone, out of which 90% of us have a smartphone. The technology is advancing rapidly. When it comes to mobile phones, people today want much more than just making phone calls and playing games on the go. People now want instant access to all their business...
Top 5 Skills Every Software Developer Must have
Software Development has been one of the most popular career trends since years. The reason behind this is the fact that software are being used almost everywhere today. In all of our lives, from the morning’s alarm clock to the coffee maker, car, mobile phone, computer, ATM and in almost everything we use in our daily...
Looking for Python Training classes?
Learn from the Best Tutors on UrbanPro
Are you a Tutor or Training Institute?
Join UrbanPro Today to find students near youThe best tutors for Python Training Classes are on UrbanPro
The best Tutors for Python Training Classes are on UrbanPro