3C科技 娛樂遊戲 美食旅遊 時尚美妝 親子育兒 生活休閒 金融理財 健康運動 寰宇綜合

Zi 字媒體

2017-07-25T20:27:27+00:00
加入好友
PYTHON機器學習自學/自修 整理[00016] ~ 語言技術:PYTHON GOSSIP(變數範圍) 程式 import sys import decimal#精準度/精度 運算 x = 10 y = 10 def some(): x = 20#區域變數 print(x)#印區域變數 print(y)#印全域變數 some() print(x)#印全域變數 print(y)#印全域變數 print('---------')#印全域變數 x = 10# 全域 def outer(): y = 20# 在 outer() 函式範圍 def inner(): z = 30# 在 inner() 函式範圍 print(x)# 內建範圍 print,全域的 x print(y)# 內建範圍 print,外包 outer() 函式的 y print(z) inner() outer()#不能直接使用嵌入函數 inner() print(x)# 內建範圍 print,全域的 x

本文由jashliaoeuwordpress提供 原文連結

寫了 5860316篇文章,獲得 23313次喜歡
精彩推薦