“MB in GB Python konvertieren” Code-Antworten

MB in GB Python konvertieren

try:
    MB = int(input("How much MB:- "))
    conversion = MB / 1024
    print(conversion," GB")
except ValueError:
    print("MB must be in numerical format not the char format")
    #numerical format --> integer
    #char format --> string
Programmer of empires

Wie man GB in Python in MB umwandelt

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
Programmer of empires

Ähnliche Antworten wie “MB in GB Python konvertieren”

Fragen ähnlich wie “MB in GB Python konvertieren”

Weitere verwandte Antworten zu “MB in GB Python konvertieren” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen