Answers for "tb to pb with python calculator"

0

tb to pb with python calculator

try:
    tb = int(input("How much tb:- "))
    conversion = tb / 1024
    print(conversion," pb")
except ValueError:
    print("PB must be in numerical format not the char format")
    #numerical format --> integer
    #char format --> string
Posted by: Guest on October-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language