blob: 0516d6faec9917c5795d98ac33853f39e6ead20b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
<!DOCTYPE html>
<html lang="ja-JP">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="nsfisis">
<meta name="copyright" content="© 2021 nsfisis">
<meta name="description" content="Python における UnboundLocalError の理由と対処法。">
<meta name="keywords" content="Python,Python 3">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<title>【Python】 クロージャとUnboundLocalError: local variable 'x' referenced before assignment | REPL: Rest-Eat-Program Loop</title>
<link rel="stylesheet" href="/hl.css?h=208c52e3b7c9db1cad782c5d30b4698f">
<link rel="stylesheet" href="/style.css?h=2923268d00d2a2482f8dc7103353c3f9">
<link rel="stylesheet" href="/custom.css?h=38829d5e1dc8776c51bbc34984de8807">
</head>
<body class="single">
<header class="header">
<nav class="nav">
<p class="logo">
<a href="/">REPL: Rest-Eat-Program Loop</a>
</p>
</nav>
</header>
<main class="main">
<article class="post-single">
<header class="post-header">
<h1 class="post-title">【Python】 クロージャとUnboundLocalError: local variable 'x' referenced before assignment</h1>
<ul class="post-tags">
<li class="tag">
<a href="/tags/python">Python</a>
</li>
<li class="tag">
<a href="/tags/python3">Python 3</a>
</li>
</ul>
</header>
<div class="post-content">
<section>
<h2 id="changelog">更新履歴</h2>
<ol>
<li class="revision">
<time datetime="2021-10-02">2021-10-02</time>: Qiita から移植
</li>
</ol>
</section>
<p>
この記事は Qiita から移植してきたものです。 元 URL:<a href="https://qiita.com/nsfisis/items/5d733703afcb35bbf399">https://qiita.com/nsfisis/items/5d733703afcb35bbf399</a>
</p>
<p>
<hr>
</hr>
</p>
<p>
本記事は Python 3.7.6 の動作結果を元にして書かれている。
</p>
<p>
Python でクロージャを作ろうと、次のようなコードを書いた。
</p>
<pre class="highlight" language="python" linenumbering="unnumbered"><code>def f():
x = 0
def g():
x += 1
g()
f()</code></pre>
<p>
関数<code>g</code>から 関数<code>f</code>のスコープ内で定義された変数<code>x</code>を参照し、それに 1 を足そうとしている。 これを実行すると<code>x += 1</code>の箇所でエラーが発生する。
</p>
<blockquote>
<p>
UnboundLocalError: local variable `x' referenced before assignment
</p>
</blockquote>
<p>
local変数<code>x</code>が代入前に参照された、とある。これは、<code>f</code>の<code>x</code>を参照するのではなく、新しく別の変数を<code>g</code>内に作ってしまっているため。 前述のコードを宣言と代入を便宜上分けて書き直すと次のようになる。<code>var</code>を変数宣言のための構文として擬似的に利用している。
</p>
<pre class="highlight" language="python" linenumbering="unnumbered"><code># 注: 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()</code></pre>
<p>
当初の意図を表現するには、次のように書けばよい。
</p>
<pre class="highlight" language="python" linenumbering="unnumbered"><code>def f():
x = 0
def g():
nonlocal x ## (*)
x += 1
g()</code></pre>
<p>
<code>(*)</code>のように、<code>nonlocal</code>を追加する。これにより一つ外側のスコープ (<code>g</code>の一つ外側 =<code>f</code>) で定義されている<code>x</code>を探しに行くようになる。
</p>
</div>
</article>
</main>
<footer class="footer">
© 2021 nsfisis
</footer>
</body>
</html>
|