OK, the first step to learning python is to download Python and install it – so first of all head on over to https://www.python.org/downloads/ Since I am doing this in Windows …
Python
-
The platform module in Python is used to access the underlying platform’s data, this means information about the device, it’s operating system, Python version, etc Usage You start with importing …
-
The range() function is used to generate a sequence of numbers over time. At its most basic, it accepts an integer and returns a range object. Syntax range(start, stop, step) …
-
In this example we will create a temperature converter in python Here are the formulas for temperature conversion Fahrenheit to Celsius formula: (°F – 32) x 5/9 = °C or …
-
This module provides a portable way of using operating system dependent functionality. If you just want to read or write a file see open(), if you want to manipulate paths, …
-
The Entry widget is used to create a single line text-box to the user to accept a value from the user. We can use the Entry widget to accept text …
-
The Listbox widget is used to display a list of items from which a user can select a number of items. In this article we will look at the syntax, …
The Checkbutton widget is used to display a number of options to the user as toggle buttons. The user can then select one or more options by clicking the button …
In this article we look at a library which allows you to get Foreign exchange rates, Bitcoin prices and perform currency conversions. The CCXT library is used to connect and trade with cryptocurrency exchanges and payment …