You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe there is an error in the answer for exercise 6 oil data. When printing the name of the month when each price is exceeded for the first time, the index refers to the actual number of the month, but since indexing starts at 0, I believe the answer should be
months[int(oilprice[i, 1]) - 1] instead of months[int(oilprice[i, 1])].
The text was updated successfully, but these errors were encountered:
I believe there is an error in the answer for exercise 6 oil data. When printing the name of the month when each price is exceeded for the first time, the index refers to the actual number of the month, but since indexing starts at 0, I believe the answer should be
months[int(oilprice[i, 1]) - 1] instead of months[int(oilprice[i, 1])].
The text was updated successfully, but these errors were encountered: