Answers for "convert pb to tb with python"

0

convert pb to tb with python

try:
    pb = int(input("How much pb:- "))
    conversion = pb * 1024
    print(conversion," TB")
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