1
def test():
print "printing from test func"
dic = {'a':1,'b':2,'c':test}
if len(dic) == 3:
print (dic['c'])
output:
<function test at 0x106887578>
此代碼將函數對象作爲輸出打印,如何從測試函數獲取打印語句作爲輸出。當存儲爲字典值時調用函數
你試過調用函數嗎?你可能想要返回的功能,而不是打印。 – Artyer
您需要使用[調用語法](https://docs.python.org/3/reference/expressions.html#calls)。即'F()' –