aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/posts/2021-10-02/python-unbound-local-error/index.html
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-03-17 01:35:04 +0900
committernsfisis <nsfisis@gmail.com>2023-03-17 01:35:04 +0900
commit0766039bd9e6b9f5e6334e84666f5be698d41fc3 (patch)
tree0f3a52fdbf56496850f903d64dcf7725fb0aedbe /public/posts/2021-10-02/python-unbound-local-error/index.html
parentee72f8780cf3681e4202cc3a6358fb4038db1ec8 (diff)
downloadblog.nsfisis.dev-0766039bd9e6b9f5e6334e84666f5be698d41fc3.tar.gz
blog.nsfisis.dev-0766039bd9e6b9f5e6334e84666f5be698d41fc3.tar.zst
blog.nsfisis.dev-0766039bd9e6b9f5e6334e84666f5be698d41fc3.zip
feat(nuldoc): implement syntax highlight
Diffstat (limited to 'public/posts/2021-10-02/python-unbound-local-error/index.html')
-rw-r--r--public/posts/2021-10-02/python-unbound-local-error/index.html38
1 files changed, 19 insertions, 19 deletions
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 4461af8..1631ccb 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
@@ -10,7 +10,7 @@
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<title>【Python】 クロージャとUnboundLocalError: local variable &apos;x&apos; referenced before assignment | REPL: Rest-Eat-Program Loop</title>
<link rel="stylesheet" href="/style.css?h=17cf97a767ec5fb6e64967729f40f30a">
- <link rel="stylesheet" href="/hl.css?h=208c52e3b7c9db1cad782c5d30b4698f">
+ <link rel="stylesheet" href="/hl.css?h=340e65ffd5c17713efc9107c06304f7b">
</head>
<body class="single">
<header class="header">
@@ -70,10 +70,10 @@
Python でクロージャを作ろうと、次のようなコードを書いた。
</p>
- <pre class="highlight" language="python" linenumbering="unnumbered"><code>def f():
-x = 0
-def g():
-x += 1
+ <pre class="highlight" language="python" linenumbering="unnumbered"><code class="highlight"><span class="hljs-keyword">def</span> <span class="hljs-title function_">f</span>():
+x = <span class="hljs-number">0</span>
+<span class="hljs-keyword">def</span> <span class="hljs-title function_">g</span>():
+x += <span class="hljs-number">1</span>
g()
f()</code></pre>
@@ -92,26 +92,26 @@ f()</code></pre>
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変数 &apos;x&apos; を宣言
-x = 0 # x に 0 を代入
-def g(): # f の内部関数 g を定義
-var x # g の local変数 &apos;x&apos; を宣言
-# たまたま f にも同じ名前の変数があるが、それとは別の変数
-x += 1 # x に 1 を加算 (x = x + 1 の糖衣構文)
-# 加算する前の値を参照しようとするが、まだ代入されていないためエラー
+ <pre class="highlight" language="python" linenumbering="unnumbered"><code class="highlight"><span class="hljs-comment"># 注: var は正しい Python の文法ではない。上記参照のこと</span>
+<span class="hljs-keyword">def</span> <span class="hljs-title function_">f</span>():
+var x <span class="hljs-comment"># f の local変数 &#x27;x&#x27; を宣言</span>
+x = <span class="hljs-number">0</span> <span class="hljs-comment"># x に 0 を代入</span>
+<span class="hljs-keyword">def</span> <span class="hljs-title function_">g</span>(): <span class="hljs-comment"># f の内部関数 g を定義</span>
+var x <span class="hljs-comment"># g の local変数 &#x27;x&#x27; を宣言</span>
+<span class="hljs-comment"># たまたま f にも同じ名前の変数があるが、それとは別の変数</span>
+x += <span class="hljs-number">1</span> <span class="hljs-comment"># x に 1 を加算 (x = x + 1 の糖衣構文)</span>
+<span class="hljs-comment"># 加算する前の値を参照しようとするが、まだ代入されていないためエラー</span>
g()</code></pre>
<p>
当初の意図を表現するには、次のように書けばよい。
</p>
- <pre class="highlight" language="python" linenumbering="unnumbered"><code>def f():
-x = 0
-def g():
-nonlocal x ## (*)
-x += 1
+ <pre class="highlight" language="python" linenumbering="unnumbered"><code class="highlight"><span class="hljs-keyword">def</span> <span class="hljs-title function_">f</span>():
+x = <span class="hljs-number">0</span>
+<span class="hljs-keyword">def</span> <span class="hljs-title function_">g</span>():
+<span class="hljs-keyword">nonlocal</span> x <span class="hljs-comment">## (*)</span>
+x += <span class="hljs-number">1</span>
g()</code></pre>
<p>