Assuming the ocean’s level is currently rising at about 1.5 millimeters per year, write a program that displays a table showing the number of millimeters that the ocean will have risen each year for the next 25 years.
# Use a python 3 and higher
print('Year | Number of millimeters') #Head of table
for i in range(1, 26): #Loop for each year, not including 26
if i < 10: # if-else constuction for pretty view
print(i, ' | ', 1.5*i) #Print table cell and calculate Number of millimeters
else:
print(i, ' | ', 1.5*i) #The same calculation, but another view