Create a Gas Cost Calculator using Python
In this tutorial, I'm going to show you two python scripts - one for metric units and one for Imperial units - for calculating the cost of gas for a road trip or an everyday commute.
In this tutorial, I'm going to show you two python scripts - one for metric units and one for Imperial units - for calculating the cost of gas for a road trip or an everyday commute.
You may using the following Python script to calculate the flight time between two cities.
In a previous post, I showed you how-to minimize your HTML using Python. Well, the script will help you minimize your HTML but how about if you didn't want to edit the script each time you wanted to minimize a HTML file? This is where this tutorial comes in.
In a previous post, I showed you how-to minimize your CSS using Python. Well, the script will help you minimize your CSS but how about if you didn't want to edit the script each time you wanted to minimize a CSS file? This is where this tutorial comes in.
I'm going to share a simply Python script that will minimize your HTML file using the BeautifulSoup library.
I'm going to share a simply Python script that will minimize your CSS file using the cssutils library.
Here's a simple Python script that will allow you to keep track of items purchased while overseas or traveling. The script will prompt you to enter item details such as the name, price, and quantity. It then stores the information in a list and displays a summary of all the items purchased.
The following are two Python scripts that will allow you to convert storage sizes. Example usage of the above script: The next script will allow an end user to set the value, source unit and the destination unit:
The following are two Python scripts to convert time zones. The second Python script I will share with you will allow the end user to enter the time zones.
The following are two Pythong scripts that will allow you or an end user convert currencies. To use these scripts, you'll need to install the forex-python library, which you can do by running pip install forex-python in your terminal.
The following are two Python scripts that use height and weight to calculate Body Mass Index (BMI).
In this article, I'm going to share a single Python script to convert Celsius to Fahrenheit and Fahrenheit to Celsius.