Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Check CSV file for value
#5
A poor man's csv:

with open(path_to_file) as csv_file:
    for line in csv_file:
        data = line.strip().split(',')
That will parse a basic csv file. It will have problems with quoted strings containing commas. Also, data will be a list of strings. You will need to convert the temperature to a number with int() or float().
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
Check CSV file for value - by Brian1210 - Sep-29-2017, 12:35 AM
RE: Check CSV file for value - by ichabod801 - Sep-29-2017, 01:04 AM
RE: Check CSV file for value - by Larz60+ - Sep-29-2017, 01:58 AM
RE: Check CSV file for value - by Brian1210 - Sep-29-2017, 02:47 AM
RE: Check CSV file for value - by nilamo - Sep-29-2017, 09:18 PM
RE: Check CSV file for value - by ichabod801 - Sep-29-2017, 03:05 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  please check this i wanna use a csv file as a graph xCj11 5 1,518 Aug-25-2022, 08:19 PM
Last Post: deanhystad
  check if a file exist on the internet and get the size kucingkembar 6 1,827 Apr-16-2022, 05:09 PM
Last Post: kucingkembar
  Code to check folder and sub folders for new file and alert fioranosnake 2 1,964 Jan-06-2022, 05:03 PM
Last Post: deanhystad
  Check last time file was accessed Pavel_47 4 2,867 Jun-01-2021, 05:47 PM
Last Post: Yoriz
  How to check if a file has finished being written leocsmith 2 7,897 Apr-14-2021, 04:21 PM
Last Post: perfringo
  Check if a file exists. Pedroski55 5 3,339 Sep-08-2020, 10:01 AM
Last Post: Pedroski55
  How to check to see a dbf file is EOF ? DarkCoder2020 0 1,739 Jun-16-2020, 05:03 PM
Last Post: DarkCoder2020
  Building a script to check size of file upon creation mightyn00b 2 2,400 Apr-04-2020, 04:39 AM
Last Post: Larz60+
  MySql - Loop - CHeck File gcclinux 1 2,108 Nov-30-2019, 11:51 AM
Last Post: ThomasL
  how to check for file type in a folder SoulsKeeper 4 4,987 Sep-15-2018, 02:48 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020