A To-do list application is a very good beginners project, lets get this started for Python/ To build a simple To-Do list application using Python and Tkinter, we’ll follow these …
-
-
In this article we show you how to convert a csv file to an excel file Here’s a simple Python script that converts CSV files to Excel using the pandas …
-
Base58 and Base58Check implementation compatible with what is used by the bitcoin network. Install base58 module from the command line: pip install base58 Code example import base58 text = …
-
PyCryptodome is a self-contained Python package of low-level cryptographic primitives. PyCryptodome is a fork of PyCrypto. It brings the following enhancements with respect to the last official version of PyCrypto …
-
In this example we check if a network port is open Code We have a function and we will check a website and the localhost import socket def is_network_port_open(hostname, port): …
-
The International Civil Aviation Organization (ICAO) alphabet assigns code words to the letters of the English alphabet acrophonically (Alfa for A, Bravo for B, etc.) so that critical combinations of …
-
In cryptography, a Caesar cipher is a very simple encryption techniques in which each letter in the plain text is replaced by a letter some fixed number of positions down …
-
In this example we use a package to display emojis The entire set of Emoji codes as defined by the Unicode consortium is supported in addition to a bunch of aliases. By default, …
-
In a previous article we showed you how you get a random fact using a library – http://www.maxpython.com/modules/display-a-random-fact-using-a-python-module.php In this example we will create a simple GUI app using tkinter …
-
In this example we will create a GUI-based simple calculator using Tkinter, this simple calculator will be able to perform basic arithmetic operations addition, subtraction, multiplication, and division. Code Most …