Answers for "How to convert ton to kg using python"

1

How to convert ton to kg using python

try:
    Ton = int(input("Ton:- "))
    To_kg = 907*Ton
    print(Ton,"Ton = ",To_kg,"Kg")
except:
    print("Ton's must be number")
Posted by: Guest on August-31-2021

Code answers related to "How to convert ton to kg using python"

Python Answers by Framework

Browse Popular Code Answers by Language