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