python中的exec()方法

exec()方法能夠執行python的代碼,傳入的參數爲字符串

exec_str = "print('hello world')"
exec(exec_str)

執行結果爲'hello world'python

相關文章
相關標籤/搜索