📜  将mb转换为gb python代码示例

📅  最后修改于: 2022-03-11 14:45:30.537000             🧑  作者: Mango

代码示例2
try:
    gb = int(input("How much Gb:- "))
    conversion = gb * 1024
    print(conversion," MB")
except ValueError:
    print("GB must be in numerical format not the char format")
    #numerical format --> integer
    #char format --> string