Advertisement
Guest User

Untitled

a guest
Mar 15th, 2015
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. import csv
  2.  
  3. lines = []
  4. with open('1112.csv') as f:
  5.     reader = csv.reader(f,delimiter=' ') #suda pihaesh svoi razdelitel stolbcov iz faila
  6.     for row in reader:
  7.         lines.append(map(float,row))
  8. for n,line in enumerate(lines):
  9.     lines[n][3] *= 3
  10.     lines[n][4] *= 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement