From 5ab78d1e23830fbb39824f09489550da0e510ce4 Mon Sep 17 00:00:00 2001 From: Prince Gangurde <50592495+Prince326@users.noreply.github.com> Date: Fri, 24 Apr 2020 13:00:50 +0530 Subject: [PATCH] Update linear_search.py --- searches/linear_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searches/linear_search.py b/searches/linear_search.py index 76683dc6a6a8..adf22056b575 100644 --- a/searches/linear_search.py +++ b/searches/linear_search.py @@ -45,6 +45,6 @@ def linear_search(sequence, target): target = int(target_input) result = linear_search(sequence, target) if result is not None: - print(f"{target} found at positions: {result}") + print(f"{target} found at position : {result}") else: print("Not found")