Observe the following code and answer the questions that follow: import csv # Line 1 def Make CSV(): file=________('Student.csv',"w") #Line 2 f1=csv._______(file) #Line 3 while True: Name=input("Name:") Marks=______ (input("Enter Marks:")) # Line 4 Row=[Name,Marks] f1.__________(Row) # Line 5 file.close() (a) Write the full form of csv given in Line 1. (1) (b) Fill in the blank with a function that will open the file to write. (1) (c) Fill in the blank in Line 3 to write the data to csv file. (1) (d) Fill in the blank in Line 4 to convert String into float data type. (1) (e) Fill in the blank in Line 5 to write a line in csv file. (1)
Answers
Answered by
0
Explanation:
khupach moth aahe ek ek tak
Similar questions