“convertir MB en gb python” Réponses codées

convertir MB en gb python

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

Comment convertir GB en MB dans Python

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

Réponses similaires à “convertir MB en gb python”

Questions similaires à “convertir MB en gb python”

Plus de réponses similaires à “convertir MB en gb python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code