Skip to content

Instantly share code, notes, and snippets.

@dogac00
Created March 14, 2018 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dogac00/fa9db6547fd437b2878a5f6380e3f194 to your computer and use it in GitHub Desktop.
Save dogac00/fa9db6547fd437b2878a5f6380e3f194 to your computer and use it in GitHub Desktop.
Calculator in Python (Nearly One Liner)
class Calculator(object):
def evaluate(self, string):
return round(eval(string), 10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment