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 9b822da commit bcc764aCopy full SHA for bcc764a
ch02/nand_gate.py
@@ -15,4 +15,4 @@ def NAND(x1, x2):
15
if __name__ == '__main__':
16
for xs in [(0, 0), (1, 0), (0, 1), (1, 1)]:
17
y = NAND(xs[0], xs[1])
18
- print(str(xs) + " -> " + str(y)) # 0を出力
+ print(str(xs) + " -> " + str(y))
0 commit comments