Skip to content

Check for Number

Andrew Burke edited this page Apr 3, 2024 · 5 revisions
def check_num(lst, num):
	for item in lst:
		if item == num:
			return True
	return False
Clone this wiki locally