Skip to content

Length of List

Andrew Burke edited this page Apr 3, 2024 · 5 revisions
def list_length(lst):
	count = 0
	for item in lst:
		count += 1
	return count
Clone this wiki locally