Hi,
Just started learning python..and want to learn to do this
I want to read a text file that something like
10000 20000 30000 40000
20000 30000 88888 88888
60000 12333 44431 12345
I want to get the difference of numbers in column1 divided by x, where I want to give "x" as an argument, I am using x=1000 here
20000-10000=10000/1000=10
60000-20000=40000/1000=40
I want to print
0
10
40
and so on.
How can I do this?
Thanks for the help!