Python dict 存放函數

  • Python 字典,能夠直接存放函數,並執行正常。

#!/usr/bin/python3

dict1 = dict()


def test_fun():
    print("test dict")


dict1["func"] = test_fun


dict1["func"]()
相關文章
相關標籤/搜索