Python 中的globals()函數返回當前全局符號表的字典。 ... Python3 program to demonstrate global() function # global variable a = 5 def func(): c = 10 d = c + a ...
確定! 回上一頁