Most reasonable answer is a line chart.
With line charts you can spot trends and variations in a certain range of data through different times or just different values of the variable that we plot on the x-axis. In general, line charts are often used in research that wants to depict time trends or how a certain variable progresses through different levels of the variable on the x-axis.
35 countries! Hope this hleps
The correct answer is digital audio
Answer:
1)
n = int(input("Please enter the length of the sequence: "))
print("Please enter your sequence")
product = 1
for i in range(n):
val = int(input())
product *= val
print("The geometric mean is: %.4f"%pow(product,1/n))
2)
print("Please enter a non-empty sequence of positive integers, each one is in a separate line. End your sequence by typing done:")
product = 1
val = input()
n = 0
while(val!="done"):
product *= int(val)
n += 1
val = input()
print("The geometric mean is: %.4f"%pow(product,1/n))
Explanation: