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 …
code
-
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 = …
-
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): …
-
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 …
-
The flames calculator is used to find the compatibility between you and your partner. Flames stand for Friends, Lovers, Affectionate, Marriage, Enemies, Siblings. It is a famous game that used …
-
Rock paper scissors has three possible outcomes: a draw, a win or a loss. A player who decides to play rock will beat another player who has chosen scissors (“rock …
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 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 …