Skip to content

Instantly share code, notes, and snippets.

@sinancetinkaya
Created February 24, 2020 22:33
Show Gist options
  • Save sinancetinkaya/889b255cb1ad4199f8b8c4aeaa352bef to your computer and use it in GitHub Desktop.
Save sinancetinkaya/889b255cb1ad4199f8b8c4aeaa352bef to your computer and use it in GitHub Desktop.
def hesap_makinesi(islem):
sonuc = eval(islem, {"__builtins__": None}, {})
return sonuc
if __name__ == "__main__":
islem = input(u"İşlem? Örnek 2*(10*27)/8 :")
print(u"İşlem sonucu: '{}'".format(hesap_makinesi(islem)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment