diff --git a/Sorting Algorithims/Bubble_sort.py b/Sorting Algorithims/Bubble_sort.py index b7dca090474..258c3641f00 100644 --- a/Sorting Algorithims/Bubble_sort.py +++ b/Sorting Algorithims/Bubble_sort.py @@ -9,10 +9,10 @@ def bubble_sort(Lists): # Lets the user enter values of an array and verify by himself/herself array = [] array_length = int( - input(print("Enter the number of elements of array or enter the length of array")) + input("Enter the number of elements of array or enter the length of array") ) for i in range(array_length): - value = int(input(print("Enter the value in the array"))) + value = int(input("Enter the value in the array")) array.append(value) bubble_sort(array)