Skip to content

Commit bcc764a

Browse files
authored
Update nand_gate.py
1 parent 9b822da commit bcc764a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch02/nand_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ def NAND(x1, x2):
1515
if __name__ == '__main__':
1616
for xs in [(0, 0), (1, 0), (0, 1), (1, 1)]:
1717
y = NAND(xs[0], xs[1])
18-
print(str(xs) + " -> " + str(y)) # 0を出力
18+
print(str(xs) + " -> " + str(y))

0 commit comments

Comments
 (0)