Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. floating_num = floating_num[0].split(' ')
  2.  
  3. floating_num = ['6.7', '6.8', '6.9', '7.0', '7.1']
  4.  
  5. floating_num = [float(x) for x in floating_num]
  6.  
  7. floating_num = [6.7, 6.8, 6.9, 7.0, 7.1]
  8.  
  9. ['6.7', '', '6.8', '6.9', '', '', '7.0', '', '7.1']
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement