New in 2026: Master Python for AI, Data Science

ProgrammingPython

Top 10 Deep Learning frameworks in 2019 (with comparison)

Artificial Intelligence is the future of the programming world. More and more developers, seeing the growing demand for AI technologies, familiarize themselves with this science. And when you start learning AI and how it can be implemented in programming, the first question which comes to…
ProgrammingPython

Python vs R - Data Visualization

In this article we are going to make similar plots using Python’s Seaborn library and R’s ggplot2. The Python Seaborn library is built over Matplotlib library but it has much simpler syntax structure than matplotlib. Visualizing data in Python Seaborn is one of the richest…
Programming

Cython vs Python - Speed up your Python

Cython is an optimising static compiler for both the Python programming language and the extended Cython programming language (based on Pyrex). It makes writing C extensions for Python as easy as Python itself. In simple words, it will light speed your Python code :D. Cython…
PyQt5Python GUI

PyQt5 - Message Box Widget

PyQt5 Message Box Let’s start by importing all the required libraries and classes. The PyQt5 QMessageBox is the class that we need to display the message box. Next, we will make a MessageBox class and override its constructor function. here as you can see that…
PyQt5Python GUI

PyQt5 - PushButton

PyQt5 Push Button To display a push button in an application, you need to create an instance of the QPushButton class. When assigning text to buttons, you can create shortcut keys by preceding any character in the text with an ampersand. For example, if the…
PyQt5Python GUI

PyQt5 - Window Widget

Do Check our other tutorial for building an python gui app with Tkinter. PyQt5 – Window Every GUI application has a top-level widget and the rest of the widgets are called its children. The top-level widget can be QDialog , QWidget , or QMainWindow ,…
ProgrammingPythonPython Basic Tutorial

Python Exception Handling

If you are a coding veteran or write production code, you would have certainly come in the contact of those pesky errors. Being able to handle these errors makes you a good programmer, therefore it is very necessary for you to properly debug and handle…
PythonPython Basic Tutorial

File handling in Python

In Python, file handling requires no extra library to process files. Both text files and binary files can be operated in python. Unlike other programming languages file handling in python is pretty easy and can be implemented with minimum lines of code. One thing worth…
ProgrammingPython

Top 5 Python libraries for Data Science in 2019

Python continues to lead the way in the field of data science with its ever-growing list of libraries and frameworks. Also, In this data-centric world, where consumers demand relevant information in their buying journey, companies also require data scientists to avail valuable insights by processing…