Answer:
The following are the program in the Python Programming Language.
#set variable and get input from user
num = int(input("Enter the number of the data set: "))
#print the following message
print("Enter the {} numbers:".format(num))
#set empty list type variable
lst = []
#set the for loop
for i in range(num):
#get the list type input from the user
n=int(input())
#add the input in the list
lst.append(n)
#store the minimum value in the variable
min_val = min(lst)
#print the minimum value of the list
print("The smallest value is:",min_val)
#print the following message
print("The normalized data set is:")
#set loop to print list
for x in lst:
print(x-min_val)
Explanation:
<u>The following are the description of the program</u>.
- Firstly, set the variable 'num' in which we get the input from the user and print the following message.
- Then, set the empty list type variable 'lst' in which we get input from the user through the for loop.
- Set variable 'min_val' in which we store the minimum value of the list.
- Then, print the minimum value of the list and print the following message.
- Finally, set the for loop that prints the list after the deduction by the minimum value of the list.