Full File Handling Tutorial
Full File Handling Tutorial
OUTPUT:
def COURIER_SEARCH():
fr_csv = open("courier.csv","r")
destination=input("Enter the destination to be searched")
csv_reader = csv.reader(fr_csv)
for i in csv_reader:
if i[3]== destination:
print(i)
fr_csv.close()
#COURIER_ADD()
COURIER_SEARCH()