Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to use a list of floats
#3
This asks for a file path and returns the size of only avi files in the folder. I need to do further math with these numbers, which is where I am stuck. Things in """ section and # areas are things I've rotated in to try but all give errors about not being able to interate through floats.

from Tkinter import *
import os
import math

root = Tk()
root.title("DVD Calculator")

spinbox1 = Spinbox(root, values= ("SD", "HD"), wrap = TRUE)
spinbox1.grid(row=0, column=1, padx=105, pady=15)

lbl1 = Label(root, text="File Path", width=8)
lbl1.grid(row=2, column=2, pady=15, sticky=W)           
       
entry1 = Entry(root, justify= RIGHT, width=55)
entry1.grid(row=2, column=1, pady=15)

def reset():
    entry1.delete(0, END)


global file_path
global total

def file_size():
    """
    this function will return the file size
    """
    file_path = entry1.get()
    filepaths = []
        
    #gets list of avi    
    for basename in os.listdir(file_path): 
        filename = os.path.join(file_path, basename)
        if not filename.endswith(('.mov', '.AVI', '.avi')): continue
        if os.path.isfile(filename):
            filepaths.append(filename)

    # Re-populate list with size, convert to GB
    for i in xrange(len(filepaths)):
        filepaths[i] = (os.path.getsize(filepaths[i]))
        nums = filepaths[i]
        i = int(math.floor(math.log(nums, 1024)))
        p = math.pow(1024, i)
        s = round(nums/p, 2)
        total = s
#        fred = [float(x) for x in total]
#        fred = list(map(float, total))
        print s
        
        fred = ', '.join(s)
        fred = map(float, fred)
        print fred
'''        
#change list for can iterate thru floats
    newlist = []
    for i in total:
        tok = i.split(total)
        for num in total:
            newlist.append(float(tok[num]))
        total.append(newlist)
    print newlist
            
            first = s[0:] * .20
            print first
       
            if type(i)== float:
                newlist.append(i)
                print newlist              

    def frange(total, end=None, inc=None):
        "A range function, that does accept float increments..."

        if end == None:
            end = total + 0.0
            start = 0.0

        if inc == None:
            inc = 1.0

        L = []
        while 1:
            next = total + len(L) * inc
            if inc > 0 and next >= end:
                break
            elif inc < 0 and next <= end:
                break
            L.append(next)
            
        print frange(total)

'''        
resetButton = Button(root, text="Reset", command= reset)
resetButton.grid(row=4, column=1, pady=100)

calcButton = Button(root, text="Calculate", command=file_size)
calcButton.grid(row=4, column=2)
        

root.geometry("450x350+200+100")
root.mainloop()
Reply


Messages In This Thread
How to use a list of floats - by kristrek - Jan-23-2017, 09:28 PM
RE: How to use a list of floats - by micseydel - Jan-23-2017, 09:39 PM
RE: How to use a list of floats - by kristrek - Jan-24-2017, 03:26 PM
RE: How to use a list of floats - by micseydel - Jan-24-2017, 06:41 PM
RE: How to use a list of floats - by kristrek - Jan-25-2017, 05:02 PM
RE: How to use a list of floats - by wavic - Jan-25-2017, 05:13 PM
RE: How to use a list of floats - by snippsat - Jan-25-2017, 05:49 PM
RE: How to use a list of floats - by kristrek - Jan-25-2017, 06:44 PM
RE: How to use a list of floats - by micseydel - Jan-25-2017, 06:57 PM
RE: How to use a list of floats - by wavic - Jan-25-2017, 07:09 PM
RE: How to use a list of floats - by kristrek - Jan-25-2017, 08:37 PM
RE: How to use a list of floats - by wavic - Jan-25-2017, 08:44 PM
RE: How to use a list of floats - by kristrek - Jan-25-2017, 09:30 PM
RE: How to use a list of floats - by wavic - Jan-26-2017, 01:04 AM
RE: How to use a list of floats - by snippsat - Jan-26-2017, 05:33 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  When is it safe to compare (==) two floats? Radical 4 2,996 Nov-12-2023, 11:53 AM
Last Post: PyDan
  floats 2 decimals rwahdan 3 2,539 Dec-19-2021, 10:30 PM
Last Post: snippsat
  rounding and floats Than999 2 5,283 Oct-26-2020, 09:36 PM
Last Post: deanhystad
  int, floats, eval menator01 2 3,220 Jun-26-2020, 09:03 PM
Last Post: menator01
  Stuck comparing two floats Tizzle 7 4,478 Jun-26-2020, 08:23 AM
Last Post: Tizzle
  rounding floats to a number of bits Skaperen 2 3,287 Sep-13-2019, 04:37 AM
Last Post: Skaperen
  comparing fractional parts of floats Skaperen 4 4,620 Mar-19-2019, 03:19 AM
Last Post: casevh
  Integer vs Floats Tazbo 2 3,768 Jan-09-2019, 12:06 PM
Last Post: Gribouillis
  Formatting floats Irhcsa 6 5,785 Oct-04-2018, 04:23 PM
Last Post: volcano63
  How do you sort a table by one column?? (of floats) sortedfunctionfails 3 14,101 Jan-11-2018, 09:04 AM
Last Post: sortedfunctionfails

Forum Jump:

User Panel Messages

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