Skip to content

Print the Index

Andrew Burke edited this page Apr 3, 2024 · 6 revisions
	def print_indices(lst):
		for index in range(len(lst)):
			print(index)
Clone this wiki locally