Answer:
The program to this question can be defined as follows:
Program:
n = int(input("Enter the number: ")) #input value from user end
print("Entered value: ",n) #print value
lt = [] #defining an empty list
for i in range(n): # loop to input values
lt.append(int(input())) #add values in the list
minimum_value = min(lt) # finding minimum value
print("Smallest value: ",minimum_value) #print value
print("Normalising data: ") #print message
for x in lt: #defining loop normalising value
print(x-minimum_value) #print normalised values
Output:
Enter the number: 5
Entered value: 5
90
60
30
80
70
Smallest value: 30
Normalising data:
60
30
0
50
40
Explanation:
In the given code a variable "n" is defined, that input value from the user end, in the next step, an empty list is defined, an two for loop is declared, which calculates the given value.
- In the first for loop, the append method is used, that input values in the given list, and at the last use the min function, that prints the smallest value in the list, and stores its value in the "minimum_value".
- In the second for loop, the "minimum_value" variable value is subtracted from the list value and print its values.
Answer:
robbery
Explanation:
it records a robbery so that police can later find out who did it
Considering the situation and the computer application, the command you would use to find additional properties of the files to reference is "<u>Get-childitem | get-member "</u>
<h3>What is Get-childitem command?</h3>
Get-childitem command in computer applications is used to get the items in specific locations.
Get-childitem command can be used to gets the items inside a file container, usually referred to as child items.
Similarly, the Get-member command used to gets the members, the properties, and methods of files.
Hence, in this case, it is concluded that the correct answer is <u>Get-childitem | get-member </u>
Learn more about Computer commands here: brainly.com/question/25243683
Answer:
There are two ways to find the average of a list of numbers in Python. You can divide the sum() by the len() of a list of numbers to find the average. Or, you can find the average of a list using the Python mean() function
Explanation:
Answer:
Information is data that has been organized is the true statement.
Explanation:
There are huge difference between information and a data. A data is basically a “raw data” or “a data which is unprocessed”. Whereas information are the processed form of data. Information gives a complete picture and can go for further analysis. The collected data does not convey any proper meaning unless it is converted to information.
<u>Example of data: </u>Employee name, product name, price of an item, sold item etc
<u>Example of information:</u> Pay slip, Reports, bar charts, Pie-charts, invoices, etc.