Python7--局部變量、全局變量、缺省參數、不定長參數、遞歸

局部變量: 函數內部定義的變量,只能在函數內部使用 全局變量: 函數外部定義的變量,在哪均可以調用   1 '''   2 def get_wendu():   3     wendu = 33   4     return wendu   5   6 def print_wendu(wendu):   7     print('溫度:%d'%wendu)   8   9 result =  ge
相關文章
相關標籤/搜索