mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
bc8df6de31
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.2.2 → v0.3.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.2.2...v0.3.2) - [github.com/pre-commit/mirrors-mypy: v1.8.0 → v1.9.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.8.0...v1.9.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
69 lines
1.7 KiB
Python
69 lines
1.7 KiB
Python
"""
|
|
A NOR Gate is a logic gate in boolean algebra which results in false(0) if any of the
|
|
inputs is 1, and True(1) if all inputs are 0.
|
|
Following is the truth table of a NOR Gate:
|
|
Truth Table of NOR Gate:
|
|
| Input 1 | Input 2 | Output |
|
|
| 0 | 0 | 1 |
|
|
| 0 | 1 | 0 |
|
|
| 1 | 0 | 0 |
|
|
| 1 | 1 | 0 |
|
|
|
|
Code provided by Akshaj Vishwanathan
|
|
https://www.geeksforgeeks.org/logic-gates-in-python
|
|
"""
|
|
|
|
from collections.abc import Callable
|
|
|
|
|
|
def nor_gate(input_1: int, input_2: int) -> int:
|
|
"""
|
|
>>> nor_gate(0, 0)
|
|
1
|
|
>>> nor_gate(0, 1)
|
|
0
|
|
>>> nor_gate(1, 0)
|
|
0
|
|
>>> nor_gate(1, 1)
|
|
0
|
|
>>> nor_gate(0.0, 0.0)
|
|
1
|
|
>>> nor_gate(0, -7)
|
|
0
|
|
"""
|
|
return int(input_1 == input_2 == 0)
|
|
|
|
|
|
def truth_table(func: Callable) -> str:
|
|
"""
|
|
>>> print(truth_table(nor_gate))
|
|
Truth Table of NOR Gate:
|
|
| Input 1 | Input 2 | Output |
|
|
| 0 | 0 | 1 |
|
|
| 0 | 1 | 0 |
|
|
| 1 | 0 | 0 |
|
|
| 1 | 1 | 0 |
|
|
"""
|
|
|
|
def make_table_row(items: list | tuple) -> str:
|
|
"""
|
|
>>> make_table_row(("One", "Two", "Three"))
|
|
'| One | Two | Three |'
|
|
"""
|
|
return f"| {' | '.join(f'{item:^8}' for item in items)} |"
|
|
|
|
return "\n".join(
|
|
(
|
|
"Truth Table of NOR Gate:",
|
|
make_table_row(("Input 1", "Input 2", "Output")),
|
|
*[make_table_row((i, j, func(i, j))) for i in (0, 1) for j in (0, 1)],
|
|
)
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|
|
print(truth_table(nor_gate))
|