Answer
See explanation
Work Step by Step
Below there is the python code for sequential searching the target number.
n=int(input("How many numbers are in the list: "))
data=[]
i=0
number=int(input("Enter first number: "))
data.append(number)
while i < n-1:
$\quad$number=int(input("Enter next number: "))
$\quad$data.append(number)
$\quad$i+=1
target=int(input("Enter target number: ))
found=False
for i in a:
$\quad$if i==target:
$\quad$$\quad$found=True
$\quad$$\quad$break
if found:
$\quad$print("Successful search, the value is in the list")
$\quad$print("Unsuccessful search, the value is not in the list")