These two little python programs can convert kilometers to miles and miles to kilometers
Needed
Python3
or a online python compiler with the output
How to?
First download the .py files from releases and run them with python3 and enter the kilometers or miles.
Or copy the codes and paste on a online compiler and run it.
miles to kilometers
# Taking kilometers input from the userkilometers=float(input("Enter value in miles: "))
# conversion factorconv_fac=0.621371# calculate milesmiles=kilometers/conv_facprint('%0.2f miles is equal to %0.2f kilometers'%(kilometers,miles))
Kilometers to miles
# Taking kilometers input from the userkilometers=float(input("Enter value in kilometers: "))
# conversion factorconv_fac=0.621371# calculate milesmiles=kilometers*conv_facprint('%0.2f kilometers is equal to %0.2f miles'%(kilometers,miles))
SH-PUBLIC is a python based cloning script. You can clone unlimited UID facebook accounts by using this tool. This tool works on any Android devices without root.
isort is a Python utility / library to sort imports alphabetically, and automatically separated into sections and by type. It provides a command line utility, Python library and plugins for various editors to quickly sort all your imports.
This is Cool Utility tools that you can use in python. There are a few tools that you might find very useful, you can use this on pretty much any project and some utils might help you a lot and save so much time since it’s a simple function.