What is the output of the following program?
import csv d=csv.reader(open('c:\PYPRG\ch13\city.csv'))
next(d)
for row in d: print(row)
if the file called “city.csv” contain the
following details
chennai,mylapore
mumbai,andheri
Read the code:
a. import matplotlib.pyplot as plt
b. plt.plot(3,2)
c. plt.show()