Python兩行代碼實現一個計算器

eval()函數的妙用 官方文檔中的解釋是,將字符串str當成有效的表達式來求值並返回計算結果。 globals和locals參數是可選的,若是提供了globals參數,那麼它必須是dictionary類型;若是提供了locals參數,那麼它能夠是任意的map對象ide #經過eval實現計算器 def calc(n): print("{} = {}".format(n, eval(n)
相關文章
相關標籤/搜索