1try:
2 pb = int(input("How much pb:- "))
3 conversion = pb * 1024
4 print(conversion," TB")
5except ValueError:
6 print("PB must be in numerical format not the char format")
7 #numerical format --> integer
8 #char format --> string
9