We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ca3d5 commit c5ba40cCopy full SHA for c5ba40c
python/Python编程快速上手 让繁琐工作自动化/automate_online-materials/littleKid.py
@@ -1,6 +1,6 @@
1
-if name == 'Alice':
+if name == 'Alice': # noqa: F821 undefined name 'name'
2
print('Hi, Alice.')
3
-elif age < 12:
+elif age < 12: # noqa: F821 undefined name 'age'
4
print('You are not Alice, kiddo.')
5
else:
6
print('You are neither Alice nor a little kid.')
0 commit comments