Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. F

    Python Selecting an inputted number of files from a folder

    Now I'm receiving a name error indicating glob is not defined even after messing with the glob import line
  2. F

    Python Selecting an inputted number of files from a folder

    def fileavg(path,n): import numpy as np import xlsxwriter from glob import glob from itertools import islice workbook = xlsxwriter.Workbook('Test.xlsx') worksheet = workbook.add_worksheet() row=0 more_files=True b=glob.iglob(path) #when inputting path name...
  3. F

    Python Selecting an inputted number of files from a folder

    I have a folder with a few hundred thousands data files in it. And what I want to do is separate the data into groups of n (which will be inputted by the user) in a way that allows me to manipulate just that group of data. Then I want to start back where I left off in the folder and take another...
Back
Top Bottom