Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Traceback (most recent call last):
  2. File "G:/test.py", line 56, in <module>
  3. heartdis_flt.append(float(item))
  4. TypeError: float() argument must be a string or a number, not 'list'
  5.  
  6. heartdis = heartdis[5:]
  7.  
  8. heartdis_flt = []
  9.  
  10. for item in heartdis:
  11.  
  12. heartdis_flt.append(float(item))
  13.  
  14. print(heartdis_flt)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement