Discussion about this post

User's avatar
David Godoy's avatar

print("text-based calculator")

print()

expresion = input("ingrese expresion: ")

while expresion != "exit":

print(eval(expresion))

expresion = input("ingrese expresion: ")

Expand full comment

No posts