Trends in Python: What’s Hot in the Hottest Language Today

Share this article

Trends in Python: What's Hot in the Hottest Language Today

Python is arguably the programming language nowadays. We’ll explore why that might be the case, what the current trends within the Python community are, and what packages and tools you might want to get acquainted with if you don’t want to be left behind.

If you were pondering what programming language you should be investing time and effort in, you can stop searching now. It’s Python.

Alright, that was an oversimplification. Admittedly, you aren’t going to jump into a Java project that’s been in development for years just to port all that code into Python just because it’s “hot”. Programming languages are a means to an end, and you have to carefully consider the cost/benefit of adopting a given technology.

That said, when things are massively moving in a certain direction, that has to mean something. And for some time already, things have been moving towards Python.

Want to level up your Python skills and stand out in a rapidly growing market? Check out SitePoint Premium! You’ll find books to get you started (like The Python Apprentice) and develop job-ready skills (like Front-end Testing in Python). Enhance your skills with The Python Master, and access a growing library of over 400 books and courses on web design and development.

Hail the King

Practically every undergraduate IT class today is taught with Python — and not just computer science introduction courses offered by companies or by unversities. Even highly specialized courses on data science, AI, or quantitative finance — that not long ago would have used languages such as R, MATLAB, or C++ — are now also more often than not entirely taught in Python.

Check out the trends as of 2019 for the past five years comparing Python, Java, C++ and PHP:

Google Trends chart for Python

Quite eloquent, isn’t it?

What about a more comprehensive list of languages over a larger span of time? Sure:

How Did that Happen?

There are tons of articles that explore why Python is so popular, but as refresher, let’s kick-start a flame war right here and briefly discuss how it compares to other languages:

  • Easy to learn. Unlike C++ or Java, Python is comparatively easier to approach, even for total noobs — which is among the reasons to why it’s the language of choice for introductory to programming courses.
  • General purpose. Unlike PHP (which is intended for web programming) or R (which is intended for statistical analysis), Python is suitable for a number of tasks.
  • Old and new. Unlike Visual Basic (which didn’t seem to stand the test of time) or Go (which is a fairly new, Nov 2009), Python is a relatively old language (1990), in active development, that has proved to be aging very well.
  • Batteries included. Unlike all of the languages mentioned, Python has a huge so-called Standard Library that covers all sorts of tasks, from specific fields to general tasks.

All of this makes Python a language in which it’s extremely easy to prototype practically anything, (even microcontrollers without using Assembler!) and launch a minimum viable product in no time.

What’s more — and yes, this is very biased, but … — Python is fun!

Python on xkcd

But enough praising; let’s dig in a bit. I’ll highlight just a handful of tools that demonstrate the power of Python. There are, of course, many more to discover.

AI

Artificial intelligence is ubiquitous these days (I double dare you to find a process that couldn’t be improved with the inception of AI), and it’s a vast field of study in which Python most certainly shines.

You’ll find, not surprisingly, some common ground with the data science section, so let’s also catch up later for more packages too!

Packages

Cloud Development

All of the integrations you can think of, including mobile, Internet of Things (IoT), APIs of all kinds, and even managing and provisioning Infrastructure as Code (IaC) — all of it means cloud.

As a Python programmer, that means opportunities for to you to develop microservices within the serverless execution model.

Packages

  • Django REST framework. A powerful and flexible toolkit for building browsable web APIs. It supports serialization, authentication policies, and customization of views, among other features. Running on of Django, it’s also very well documented.
  • Pika. The pure-Python implementation of RabbitMQ, a high-scale, high-availability message-broker that allows for asynchronous messaging across different platforms and systems.
  • Serverless Framework. While being developed in Node.js, if offers tons of examples about how to build and deploy Python applications to Amazon Web Services (AWS), the Google Cloud Platform (GCP) and Microsoft Azure.

Additionally, it’s good to get familiar with AWS Lambda, Amazon API Gateway, Cloud Functions and Azure Functions. These are Amazon, Google and Microsoft services that you will use to actually deploy your Python code to the cloud.

Cryptocurrencies and Finance

I won’t get into a discussion here about whether or not Bitcoin and other cryptocurrencies are an economic bubble (they are!), as that would initiate endless heated debate.

But one thing is for certain: *the uses of the blockchain technology go further than cryptocurrencies and ICO.)

And if you’d like to delve into the finance side of things, you can apply that knowledge to all financial markets — cryptocurrencies included.

Packages

Python is mostly used as a server-side language and not so much client-side (for things like wallets). With that in mind, to develop blockchain, you can in fact use frameworks such as TensorFlow and Django (see the AI and web development sections, respectively, for more details).

That said, there are a handful of blockchain- and finance-related packages that might come in handy, such as api-v1-client-python (Blockchain Bitcoin developer APIs), and SmartPy (smart contract language for Tezos).

For quantitative analysis, check pandas (see the data science section) and Zipline (a pythonic algorithmic trading library).

Data Science

Just like with AI, Python has solemnly proven its place within the data science field among players like R and MATLAB.

Truth be told, while not being meant as general-purpose tools, these other languages did have an edge when compared to Python, both in terms of performance and capabilities. That isn’t the case anymore, though, as Python has come a long way since then, and there’s hardly any given task you can’t perform in Python as effectively — if not more so — as you would on these other platforms. And Python is still a general-purpose language, meaning that it can do much more for you.

Packages

  • NumPy. Python meets MATLAB: linear algebra with support for large, multi-dimensional arrays and matrices, and a large collection of high-level mathematical functions to manipulate them.
  • pandas. High-performance, easy-to-use data structures for data analysis, in particular data manipulation of numerical tables and time series. Check out this video series of the Data School!
  • SciPy. Routines for scientific and technical computing, including statistics, optimization, numerical integration, interpolation, special functions, FFT, signal and image processing, and ODE solvers.

Web Development and Mobile Apps

Yes, web development is still a thing in 2020! Who knew? If you ask me, not only are there many more years ahead for web development, but the line between web and mobile apps is only going to become more blurry.

Admittedly, Python might not play a leading role here, but there’s an edge: you can project manage things easier, moving team members around, because chances are that other ends of the ecosystem you’re working with are also going to be developed in Python.

In other words, as a Python player, you can play many games.

Packages

  • Flask. A lightweight web application framework. As a microframework, it doesn’t require particular tools or libraries, which also means no database abstraction layers. But sometimes minimalism and performance is the name of the game.
  • Django. “The web framework for perfectionists with deadlines” (I do love that tagline!) Quick, secure and scalable, its object-relation mapping (ORM) and its model-template-view (MTV) systems are so good that many use the framework even for non web-related work. Instagram, Spotify, Pinterest, Dropbox, and even YouTube are examples of sites built with Django.
  • Kivy and BeeWare. In a nutshell, Kivy is for developing cross-platform GUI’s, and BeeWare is for developing native, multi-platform apps, including desktop and mobiles. They’re still modest players compared to Ionic, but things might change in the near future.

Extra: Tools You Ought to Own

iPython was originally presented as a tool for “interactive computing” (live typing and execution of code), but soon a group of developers realized that the idea behind it had so much potential that they created Project Jupyter as a spin-off.

Later, JupyterLab would come in, which took the concept of “notebook interfaces” (executable code, output and annotations that you can share) to the next level, supporting an array of languages, not just Python. Try it!

Finally, in a a fashion similar to Shiny from the R Studio, the Jupyter ecosystem introduced Voilà, which “turns Jupyter notebooks into standalone web applications“. Check the gallery of Voilà dashboards. It’s quite impressive.

So if you haven’t already, you really should get familiar with these tools. They will simplify your workflow tremendously, allowing for faster testing and sharing of code.

Wrap Up

Nothing lasts forever, perhaps most notably in IT. If we can conclude something from the Most Popular Programming Languages 1965–2019 clip at the intro, is that programming languages reign come and go. Yes, now the king is a nonvenomous snake, but you won’t be surprised if one day you hear the uproar from the masses: the king is dead, long live the king!

Although it doesn’t seem this is going to happen that soon, surely many of the tools and packages we reviewed here will go unmaintained, discontinued, forked, or taken over by competitors. And we know that as much as it’s fun to learn to do things in a new way or with a new tool, it can also be a pain if you already have a workflow going. But hey, we wouldn’t be talking technology if we wanted things to remain the same, right?

So stay alert, always with your radar on, keep an eye on the PyCons — both the conferences in your city and the clips on YouTube — to see what’s new on the horizon. And don’t shy away from trying new things every once in a while. That way, you’ll stay in good shape.



Find your next remote Python job with SitePoint Remote, where we handpick the best remote jobs for developers, designers and digital professionals.

What are the latest trends in Python development for 2023?

Python development is continuously evolving, and 2023 is expected to bring some exciting trends. One of the most significant trends is the increased use of Python in artificial intelligence and machine learning. Python’s simplicity and readability make it an ideal language for these complex fields. Additionally, Python’s extensive libraries and frameworks, such as TensorFlow and PyTorch, are invaluable for AI and ML development. Another trend is the growing popularity of Python in web development, thanks to frameworks like Django and Flask that simplify the process. Python is also becoming a preferred language for data analysis and visualization, with libraries like Pandas and Matplotlib leading the way.

Why is Python becoming popular in AI and Machine Learning?

Python’s simplicity, readability, and extensive libraries make it an ideal language for AI and Machine Learning. Libraries like TensorFlow, PyTorch, and Keras provide pre-written code for complex algorithms and processes, reducing the time and effort required for development. Python’s syntax is also straightforward, making it easier for developers to write and debug code. Furthermore, Python supports both object-oriented and functional programming paradigms, making it versatile for different AI and ML applications.

How is Python used in web development?

Python is increasingly being used in web development due to its simplicity and the robust frameworks it offers. Django and Flask are two popular Python frameworks that simplify web development by providing pre-written code for common tasks. Django is a high-level framework that encourages rapid development and clean, pragmatic design, while Flask is a microframework that gives developers more flexibility and control. Python’s readability also makes the code easier to maintain and debug, which is crucial for web development.

What role does Python play in data analysis and visualization?

Python is a powerful tool for data analysis and visualization. Libraries like Pandas provide data structures and functions needed for manipulating and analyzing data. Matplotlib, Seaborn, and Plotly are popular Python libraries for data visualization, allowing data analysts to create a wide variety of static, animated, and interactive plots. Python’s simplicity and readability also make it easier to work with large datasets and perform complex analyses.

What are some other emerging trends in Python development?

Apart from AI, ML, web development, and data analysis, other emerging trends in Python development include its use in cybersecurity, network programming, and game development. Python’s powerful libraries and frameworks, along with its simplicity and readability, make it a versatile language for various applications. The growth of Python in these areas is expected to continue in 2023 and beyond.

How does Python compare to other programming languages in terms of popularity and usage?

Python is one of the most popular programming languages, consistently ranking high in various surveys and indices. Its popularity is due to its simplicity, readability, and versatility. Python’s extensive libraries and frameworks make it suitable for a wide range of applications, from web development to AI and ML. Compared to other languages, Python is easier to learn, making it a popular choice for beginners.

What are the benefits of using Python for AI and ML development?

Python offers several benefits for AI and ML development. Its simplicity and readability make it easier to write and debug code. Python’s extensive libraries, like TensorFlow and PyTorch, provide pre-written code for complex algorithms, reducing the time and effort required for development. Python also supports both object-oriented and functional programming paradigms, making it versatile for different AI and ML applications.

How does Python simplify web development?

Python simplifies web development through its robust frameworks like Django and Flask. These frameworks provide pre-written code for common tasks, reducing the time and effort required for development. Python’s syntax is also straightforward and readable, making the code easier to maintain and debug. Furthermore, Python’s support for both object-oriented and functional programming paradigms makes it versatile for different web development tasks.

Why is Python a powerful tool for data analysis and visualization?

Python is a powerful tool for data analysis and visualization due to its libraries like Pandas, Matplotlib, Seaborn, and Plotly. Pandas provides data structures and functions needed for manipulating and analyzing data. Matplotlib, Seaborn, and Plotly allow data analysts to create a wide variety of static, animated, and interactive plots. Python’s simplicity and readability also make it easier to work with large datasets and perform complex analyses.

What is the future of Python development?

The future of Python development looks promising, with its growing popularity in various fields like AI, ML, web development, data analysis, and more. Python’s simplicity, readability, and extensive libraries and frameworks make it a versatile language for different applications. As technology continues to evolve, Python is expected to remain a popular choice for developers due to its adaptability and ease of use.

Lucero del AlbaLucero del Alba
View Author

Lucero is a programmer and entrepreneur with a feel for Python, data science and DevOps. Raised in Buenos Aires, Argentina, he's a musician who loves languages (those you use to talk to people) and dancing.

aiCCloudcryptocurrencydata scienceMATLABpythonr
Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week