QuackatronHQ / Gigarepo

Audit required: Use of eval PYL-W0123
Security
Major
a month ago2 years old
 5    while True:
 6        try:
 7            string = input("> ")
 8            print(eval(string)) 9        except (KeyboardInterrupt, EOFError):
10            print()
11            exit()