It wasnβt so distant a past when we were all excited about the new apps coming to town. At that time, everyone was talking about how tech opens doors to entrepreneurship.
In these short few years, we saw disruption moving rapidly, bringing insurmountable change to every industry it set foot in. What could be automated is now automated. What was once in pen and paper, can now be recorded seamlessly on an app.
Today, people are looking beyond just another app. People are looking for more intelligence and more efficiency in decision making.
If you want to learn programming, it is time to start. But beyond that, you need to understand how you will need to prepare for tomorrow.
Why learn Python
There are many reason to why you would want to learn coding. You can, of course, start with other languages besides Python.
Iβve done a webinar on how to start coding and the considerations for you to start your coding journey in a more efficient way. This is based on my experience with >1000 students at NEXT Academy and their learning styles.
For this article however, I want to make a case for Python. Why learn Python, what you can do with it and why it will help you secure a better future.
Key Advantages of Python
- Python has risen in the ranks of programming languages
- Easy to learn and readable syntax
- Diverse community that opens new opportunities
- Python has extensive libraries and frameworks
#1: Python has risen in the ranks of programming languages
[Update May 2020]
β
According to Tiobe Index, Python is now the top 3 programming language amongst professional software developers.
Based on PYPL rankings, Python tutorial is most searched on Google.
On Stack Overflow (the sacred site for all developers around the world), Python has risen in ranks and is considered the most wanted language to be learned.
If you are wondering what is fuelling Pythonβs popularity, itβs because of its access to the new buzzword in town, βMachine Learning and Artificial Intelligenceβ. Weβll talk about that later. But why does popularity matter?
Here’s why: When professional developers see value in those who learn Python, it results in community growth. The language will be used more often and more job opportunities will follow.
To learn Python now would mean that you are ready for the job market when the demand for developers who know Python increases.
β
Author’s thoughts:
People often ask if Python will overtake Java one day, well, time would tell. Many existing tools and software still use Java and often it is not easy to migrate. These days, more new software is using new languages to build, such as Python. As the use case of Python grows, you would see Python go up the ranks.
So should you learn Python or Java? It depends how forward looking you want to be!
These days, people also ask, “should I learn Python or Javascript?” It highly depends on your use case. In NEXT Academy’s case, we teach JavaScript for frontend coding and Python for backend coding.
Here is a brief history of Python which you can check out!
β
#2: Easy to learn and readable syntax
Language popularity is often tied to a few factors. Aside from use cases, another reason is how easy the language is to pick up and learn.
Python fulfils both criteria. It can be used for a lot of things and it is relatively easy to learn.
Python is built to be simple, understandable and readable. It even has a list of aphorisms that spell out its core philosophy!
Here are a few of them:
Beautiful is better than ugly Explicit is better than implicit Simple is better than complex Readability counts
People love describing it as βclean and elegantβ. For me, one added advantage that Python has is its compulsory use of whitespaces (indentation) which is used to denote blocks. For example:
β
score = 80
if(score > 90):
print("Excellent.")
elif(score_practical > 75):
print("Good")
else:
print("Try again!")
Whitespaces/Indentations help developers understand the relationship between each lines of code.
For other languages, that whitespace remains best practice, rather than compulsory. Thus, many newbie developers do not like adhering to that (β¦such code does not deserve to be shipped and deployed! NEVER!π€¬).
But with Python, it matters. Do it wrongly, and you will alter the meaning of the relationship between the lines of code. This forces developers to implement this best practice.
Thank you Python! π Now code mentors and senior software engineers no longer need to cry over ugly, messy code.
β
Author’s thoughts:
There are 2 parts to learning to code: learning the syntax and learning how to use the syntax to write instructions to the computer.
When you want to compare Python vs C++, C or even Java, you would want to compare them based on their syntax. Keep in mind that, the easier the syntax, the easier for you to start learning how to code.
Only after you build your thought processes on how to write instructions with code, you can easily switch to a different language of your choice.
Whenever you want to compare programming languages, for example, “Python vs Swift, Java etc”, here are key factors to determine on your code learning journey.
β
#3: Diverse community that opens new opportunities
β
When it comes to learning something new, what you need is good support. If a beginner is stuck learning something powerful without support, he/she will likely not go far.
When we use the word βopen sourceβ, it means βpowered by communityβ. The bigger the community, the more use cases there will be. This means that it is easier for anyone whoβs stuck to get help from the community. It also means that the language will continue evolving to be better.
Python has a diverse community. Aside from developers who use Python for apps and scripting purposes, it has ties with the world of academia.
Python is being used increasingly for research papers (mainly on math, stats, data science, machine learning, AI). This is because it is able to give researchers more access to functionalities. At the same time, it is free to use even for commercial purposes. (No worries on paying royalties when you want to patent something!)
This means that you have a huge scientific community backing you up when you need help.
Not just that, these days, higher learning institutions are using Python as an introduction to programming.
This would mean that the Python community will continue to grow.
There are many use-cases in Python, of which are IoT, automation scripts, apps, finance trading bots and more. These are possible thanks to the community.
β
#4: Python has extensive libraries and frameworks
β
Python is being used for scripting, web development, building simple games, natural language processing, data science, machine learning, AI, IoT and so on.
Why is it possible to do these with Python? Itβs due to the extensiveness of its libraries and frameworks.
When the community grows and uses Python for different use cases, developers would build libraries and frameworks to make life easier for those particular use cases.
This is why having a diverse community helps.
For example, math libraries do not just appear out of thin air. It requires the communityβs effort to build the library so that everyone like you and me could use it!
And with these libraries, developers and researchers in turn are able to get into data science, machine learning and AI and subsequently, build more libraries related to these disciplines.
Web frameworks were built by web developers, and they are constantly improving it so that next time you decide to build an app, it could take you only a few days to build a simple app as opposed to weeks and months.
When it comes to learn Python, it is really dependant on your goals. It provides you with the ability to venture into many fields and disciplines.
β
Author’s thoughts:
Occasionally people like to compare frameworks. For example, Python’s Django vs Node.js, Flask, Angular or ReactJS.
Always remember, frameworks are there to make your life better. In fact, when you learn one framework, it’s easy to pick up another framework. Frameworks CAN come and go. Don’t be a framework developer, because once the framework is gone, BYE BYE to you too.
If you want to see other topics on Python, do check out All About Python.
In closing
It is known to be easy to learn Python and pick it up. Often people are worried that they spend time learning something and eventually it would die off, wasting the effort. Here’s why Python is not going to die off anytime soon.
Aside from being used for web development, we can see the next advantage Python has – it is to sift through and to make sense of our data heavy world. If you use Google sheets and Excel to manage your data, you would know that there is a limitation. Aside from that, you would need math and statistics formulas to sift through the data, which is why people are using Python instead of Excel or R.
Now letβs talk about what you could do with Python.
Read the next article in this series π What can you use Python for?
βIf you’re ready to start your coding journey, or want to talk to someone who can answer your questions, check out our Full Stack Web Development Bootcamp.
-
Audrey Linghttps://www.nextacademy.com/author/audrey/
-
Audrey Linghttps://www.nextacademy.com/author/audrey/
-
Audrey Linghttps://www.nextacademy.com/author/audrey/
-
Josh Tenghttps://www.nextacademy.com/author/josh/
-
Josh Tenghttps://www.nextacademy.com/author/josh/
-
Josh Tenghttps://www.nextacademy.com/author/josh/
-
Josh Tenghttps://www.nextacademy.com/author/josh/