'How I can add the day when the day was min and the day was max
A question states that I am making a program where the user adds the number of days he invested in the stock market. After that, he adds the prices and shows the highest and lowest price with the addition of the day at the highest and lowest price.
N = int(input("Namuber of days: "))
x_list = []
for i in range(N):
x = float(input("Enter a set of stock prices on day{}: ".format(i+1)))
x_list.append(x)
print(max(x_list))
print(min(x_list))
Solution 1:[1]
You need to print the index
of the max
and min
prices instead.
print(x_list.index(max(x_list)))
print(x_list.index(min(x_list)))
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Python learner |