Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
reading from a file
#5
(Jul-13-2020, 08:08 PM)jefsummers Wrote: Also you have a scope of variable problem.
def get_csv_as_table(filename, delimiter):
    csvFile=open(filename)
    for row in csvFile:
        #row=row.strip()
        row=row.split(delimiter)
        userArray.append(row)
    csvFile.close()
    return userArray
    
get_csv_as_table(userFileName, userDelimiter)
Output:
Input the file name :- top_100.csv input the delimiter :- , >>>
i still get this output now the array wont even print:(
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,068 Mar-31-2021, 11:53 AM
Last Post: snippsat
  Weird problem with reading from file and performing calculations pineapple999 1 3,047 Jul-25-2019, 01:30 AM
Last Post: ichabod801
  Handling IO Error / Reading from file Expel 10 4,989 Jul-18-2019, 01:21 PM
Last Post: snippsat
  Reading an Unconventional CSV file OzSbk 2 3,923 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,529 Dec-11-2018, 02:19 PM
Last Post: ichabod801
  Reading of structured .mat (matlab) file sumit 2 3,476 May-24-2018, 12:12 PM
Last Post: sumit
  File Reading toxicxarrow 9 5,272 May-07-2018, 04:12 PM
Last Post: toxicxarrow
  reading all lines from a text file seadoofanatic 2 2,962 Mar-13-2018, 06:05 PM
Last Post: Narsimhachary
  Reading a text file fivestar 7 5,692 Oct-13-2017, 07:25 AM
Last Post: gruntfutuk
  Dictionary + File Reading palmtrees 2 4,931 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