“converter mb em gb python” Respostas de código

converter mb em 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

Como converter GB em MB em 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

Respostas semelhantes a “converter mb em gb python”

Perguntas semelhantes a “converter mb em gb python”

Mais respostas relacionadas para “converter mb em gb python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código