Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
reading from a file
#1
hi im currently working on a small project to make a bill bored chart and its on and we have to read the artists from a "csv" file we cannot use "import csv" methords and im still in the basic structure of reading the csv file but when i input the name and the delimiter it does not print in the array it just prints blank array this is what i have done so far
code
userFileName=input("Input the file name :- ")
userDelimiter=input("input the delimiter :- ")
userArray=[]

def get_csv_as_table(filename, delimiter):
    csvFile=open(filename)
    for row in csvFile:
        #row=row.strip()
        row=row.split(delimiter)
    userArray.append(row)
    print(userArray)

get_csv_as_table(userFileName, userDelimiter)
Reply


Messages In This Thread
reading from a file - by looseCannon101 - Jul-13-2020, 09:10 AM
RE: reading from a file - by GOTO10 - Jul-13-2020, 12:23 PM
RE: reading from a file - by jefsummers - Jul-13-2020, 08:08 PM
RE: reading from a file - by GOTO10 - Jul-13-2020, 08:18 PM
RE: reading from a file - by looseCannon101 - Jul-15-2020, 04:51 AM
RE: reading from a file - by ndc85430 - Jul-15-2020, 04:54 AM
RE: reading from a file - by looseCannon101 - Jul-15-2020, 04:57 AM
RE: reading from a file - by ndc85430 - Jul-15-2020, 05:00 AM
RE: reading from a file - by looseCannon101 - Jul-15-2020, 05:23 AM
RE: reading from a file - by GOTO10 - Jul-15-2020, 12:51 PM
RE: reading from a file - by looseCannon101 - Jul-15-2020, 02:05 PM
RE: reading from a file - by GOTO10 - Jul-15-2020, 02:40 PM
RE: reading from a file - by jefsummers - Jul-15-2020, 03:06 PM
RE: reading from a file - by looseCannon101 - Jul-18-2020, 07:27 AM
RE: reading from a file - by GOTO10 - Jul-18-2020, 11:29 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Excel File reading vanjoe198 1 2,051 Mar-31-2021, 11:53 AM
Last Post: snippsat
  Weird problem with reading from file and performing calculations pineapple999 1 3,022 Jul-25-2019, 01:30 AM
Last Post: ichabod801
  Handling IO Error / Reading from file Expel 10 4,907 Jul-18-2019, 01:21 PM
Last Post: snippsat
  Reading an Unconventional CSV file OzSbk 2 3,902 May-17-2019, 12:15 PM
Last Post: MvGulik
  reading text file and writing to an output file precedded by line numbers kannan 7 10,471 Dec-11-2018, 02:19 PM
Last Post: ichabod801
  Reading of structured .mat (matlab) file sumit 2 3,436 May-24-2018, 12:12 PM
Last Post: sumit
  File Reading toxicxarrow 9 5,211 May-07-2018, 04:12 PM
Last Post: toxicxarrow
  reading all lines from a text file seadoofanatic 2 2,945 Mar-13-2018, 06:05 PM
Last Post: Narsimhachary
  Reading a text file fivestar 7 5,652 Oct-13-2017, 07:25 AM
Last Post: gruntfutuk
  Dictionary + File Reading palmtrees 2 4,901 Nov-15-2016, 05:16 PM
Last Post: Ofnuts

Forum Jump:

User Panel Messages

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