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…
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…
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…
Programming

How Python is getting must for Traders?

It’s nearly forty years since the launch of the first spreadsheet, VisiCalc, which was written for Apple II (June 4 1979 to be precise). Today, whilst VisiCalc has long since…
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…
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…