Nancy's PT instructor asked her to record the heights of children of her class, in MS-Excel. He wants to know the height of the tallest child of the class. Which function in Excel should he use for the same? *
Answers
Answered by
1
Explanation:
to get max height
import csv
f=open("name_of_excel.csv")
d=csv.reader(f)
s=max(int(d))
print(s,'is the height of tallest child')
f.close()
Hope You May Get
Mark as brainliests if you are satisfied
Thank You...
Similar questions