# # example of Linear Search
nums = [10, 4, 53, 533, 64, 3, 69, 90] serach = 533 for num in nums: if num == serach: print('I got the number:', serach)
0 Comments