python中使用eval() 和 ast.literal_eval()的區別

來源:互聯網
上載者:User

標籤:python   eval   ast.literal_eval   

eval函數在python中做資料類型的轉換還是很有用的。它的作用就是把資料還原成它本身或者是能夠轉化成的資料類型。

那麼eval和ast.literal_val()的區別是什麼呢?

eval在做計算前並不知道需要轉化的內容是不是合法的(安全的)python資料類型。只是在調用函數的時候去計算。如果被計算的內容不是合法的python類型就會拋出異常。

ast.literal則會判斷需要計算的內容計算後是不是合法的python類型,如果是則進行運算,否則就不進行運算。


------------------------------引用自stackoverflow--------------------------------

datamap = eval(raw_input(‘Provide some data here: ‘) means that you actually evaluate the code before you deem it to be unsafe or not. It evaluates the code as soon as the function is called. See also the dangers of eval.

ast.literal_eval raises an exception if the input isn‘t a valid Python datatype, so the code won‘t be executed if it‘s not.

Use ast.literal_eval whenever you need eval. If you have Python expressions as an input that you want to evaluate, you shouldn‘t (have them).

shareedit edited Mar 4 ‘13 at 8:59
answered Mar 4 ‘13 at 8:52Volatility
13.4k32653
add a comment

python中使用eval() 和 ast.literal_eval()的區別

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.