"""
Valores multiple 
""""" 
print("1 Multiplicacion")
print("2 Potencia")
print("3 Division")
print("4 valor equis")
VAL = int( input("Ingresar uno de los VAL: "))
match(VAL) :
    case 1:
            v=int(input("Ingresa un NUM: "))
            multiplicacion=100*v
            print("La multiplicacion es",multiplicacion)
    case 2:
            v=int(input("Ingresa un NUM: "))
            potencia= 100^v
            print("La potencia es",potencia)
    case 3:
            v=int(input("Ingresa un NUM: "))
            division= 100/v
            print("La division es",division) 
    case 4:
            v=int(input("Ingresa un NUM: "))
            print("El numero equis es: ",v)

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: