Super akka , I understand the CSV file concept . Thank u
@komeshsiva3 жыл бұрын
Why writerow is used mam?
@geetharobin72284 жыл бұрын
Thank you mam. Now iam clear with the concept. Can you please post the videos about printing number of rows in csv file including and excluding column headings. Thank you
@TechiSugan4 жыл бұрын
print(read_content.line_num) =>along with the existing it prints number if rows count including header.
@TechiSugan4 жыл бұрын
count=0 next(read_content) # for skipping header for row in read_content: count+= 1 print(count) ==>prints count excluding heading