From e8366ab41644102a8db2ac0740212de982eb043b Mon Sep 17 00:00:00 2001 From: standenboy Date: Wed, 17 Jan 2024 13:13:58 +0000 Subject: did some comp sci homework --- comp/hw/110/search.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 comp/hw/110/search.py (limited to 'comp/hw/110/search.py') diff --git a/comp/hw/110/search.py b/comp/hw/110/search.py new file mode 100644 index 0000000..99f8b3d --- /dev/null +++ b/comp/hw/110/search.py @@ -0,0 +1,12 @@ +names = ["jacob", "thor", "katelyn", "johnson"] + +searchingFor = input("name to look for: ") +for i in names: + if i == searchingFor: + print("found name") + exit(0) + +print("name not found") + + + -- cgit v1.2.3