摘要:
逻辑门的Python实现与简单应用 基本的门 与非门 或非门 elementgate.py #coding=utf-8 def roc_nor(a, b): return int(not(a or b)) def roc_nand(a, b): return int(not(a and b)) if 阅读全文
posted @ 2021-12-17 13:34
20211408王其
阅读(292)
评论(0)
推荐(0)
浙公网安备 33010602011771号