logic gate (AND, OR, XOR, NOT, NAND, NOR and XNOR)
ผู้แต่ง:นางสาวสุรีพร จันทร์เมือง เทคนิคคอมพิวเตอร์
Logic Gates ใน Python เราจะเรียนรู้การใช้งานเกตพื้นฐานบางอย่าง ‘และ’, ‘หรือ’ ,’ไม่’ , ‘nand’ ,’nor’ ใน Python เกตเหล่านี้สามารถนำไปใช้ได้โดยใช้ฟังก์ชันที่ผู้ใช้กำหนดซึ่งออกแบบตามตารางความจริงที่เกี่ยวข้องกับเกตที่เกี่ยวข้อง
Construction of And Gate in Python(การสร้าง And Gate ใน Python)
Example
Output
False False False True
Construction of Or Gate in Python(การสร้าง Or Gate ใน Python)
Example
OUTPUT
False True True True
Construction of Not Gate in Python(การสร้าง Not Gate ใน Python)
Example
Output
True False
Construction of Nand Gate in Python(การสร้าง Nand Gate ใน Python)
Example
Output
True True True False
Construction of Nor Gate in Python(การสร้าง Nor Gate ใน Python)
Example
Output
True False False False