def main():
testList = [3, 1, 8, 1, 5, 2, 21, 13]
print("searching for 5 in", testList,"...")
searchResult1 = linearSearch(testList, 5)
print(searchResult1)
def linearSearch(aList, target):
for item in aList:
if item == target:
return True
return False
main()
Instead of returning true if the value is in the list, how can I return the position of that value?
If you want to keep your code entirely, you can use enumerate for getting index position.