aboutsummaryrefslogtreecommitdiff
path: root/challenge-143/lubos-kolouch/python/ch-1.py
blob: 793fea203e3e095507852640de7b1640029e768a (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python
# -*- coding: utf-8 -*-

def calculate(expression):
    return eval(expression)


print(calculate("10 + 20 - 5"))  # Outputs: 25
print(calculate("(10 + 20 - 5) * 2"))  # Outputs: 50