Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
reading from a file
#13
Also, better form not to print from within the function. Rather, print the returned value in the calling script
print(get_csv_as_table(userFileName, userDelimiter))
Or, if you want to use the value and do something more with it
my_output = get_csv_as_table(userFileName, userDelimiter)
print(my_output)
Another nit pick - in naming your variables, it is considered proper form in Python to avoid camelCase and instead use underscores between_words_in_your variable names. Note how GOTO10 did that in his post above.
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,099 Mar-31-2021, 11:53 AM
Last Post: snippsat
  Weird problem with reading from file and performing calculations pineapple999 1 3,083 Jul-25-2019, 01:30 AM
Last Post: ichabod801
  Handling IO Error / Reading from file Expel 10 5,083 Jul-18-2019, 01:21 PM
Last Post: snippsat
  Reading an Unconventional CSV file OzSbk 2 3,952 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,595 Dec-11-2018, 02:19 PM
Last Post: ichabod801
  Reading of structured .mat (matlab) file sumit 2 3,509 May-24-2018, 12:12 PM
Last Post: sumit
  File Reading toxicxarrow 9 5,326 May-07-2018, 04:12 PM
Last Post: toxicxarrow
  reading all lines from a text file seadoofanatic 2 2,985 Mar-13-2018, 06:05 PM
Last Post: Narsimhachary
  Reading a text file fivestar 7 5,748 Oct-13-2017, 07:25 AM
Last Post: gruntfutuk
  Dictionary + File Reading palmtrees 2 4,979 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