From 398b2d2862e6fd2aab420b2b329aaa9c204582e0 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 20 Mar 2023 22:08:56 +0900 Subject: feat(content): use element --- .../python-unbound-local-error/index.html | 50 +++++++++++----------- 1 file changed, 25 insertions(+), 25 deletions(-) (limited to 'public/posts/2021-10-02/python-unbound-local-error/index.html') diff --git a/public/posts/2021-10-02/python-unbound-local-error/index.html b/public/posts/2021-10-02/python-unbound-local-error/index.html index 8093c8e..62a5c86 100644 --- a/public/posts/2021-10-02/python-unbound-local-error/index.html +++ b/public/posts/2021-10-02/python-unbound-local-error/index.html @@ -56,14 +56,14 @@ -

- この記事は Qiita から移植してきたものです。 元 URL: https://qiita.com/nsfisis/items/5d733703afcb35bbf399 -

- -

-


- -

+
+
+ NOTE +
+
+ この記事は Qiita から移植してきたものです。 元 URL: https://qiita.com/nsfisis/items/5d733703afcb35bbf399 +
+

本記事は Python 3.7.6 の動作結果を元にして書かれている。 @@ -74,10 +74,10 @@

def f():
-x = 0
-def g():
-x += 1
-g()
+    x = 0
+    def g():
+        x += 1
+    g()
 
 f()
@@ -97,25 +97,25 @@ f()
# 注: var は正しい Python の文法ではない。上記参照のこと
 def f():
-var x           #  f の local変数 'x' を宣言
-x = 0           #  x に 0 を代入
-def g():        #  f の内部関数 g を定義
-var x       #  g の local変数 'x' を宣言
-#  たまたま f にも同じ名前の変数があるが、それとは別の変数
-x += 1      #  x に 1 を加算 (x = x + 1 の糖衣構文)
-#  加算する前の値を参照しようとするが、まだ代入されていないためエラー
-g()
+ var x # f の local変数 'x' を宣言 + x = 0 # x に 0 を代入 + def g(): # f の内部関数 g を定義 + var x # g の local変数 'x' を宣言 + # たまたま f にも同じ名前の変数があるが、それとは別の変数 + x += 1 # x に 1 を加算 (x = x + 1 の糖衣構文) + # 加算する前の値を参照しようとするが、まだ代入されていないためエラー + g()

当初の意図を表現するには、次のように書けばよい。

def f():
-x = 0
-def g():
-nonlocal x   ## (*)
-x += 1
-g()
+ x = 0 + def g(): + nonlocal x ## (*) + x += 1 + g()

(*) のように、nonlocal を追加する。これにより一つ外側のスコープ (g の一つ外側 = f) で定義されている x を探しに行くようになる。 -- cgit v1.2.3-70-g09d2