I have a text file which i load in python, i load the file and split the values.The text file contains the following...
678John Jones 23501289100005670
999Arthur Dudley-Smith 40000956064012300
5789Bob Billards 04600230190048945
543780Helen W Anderson 53001945045000990
for example i create an array called Hours[] then append the number to it by...
Hours.append(int(line[26:30]))
doing this give the value for Hours[0] to be 2350, but i want there to be a decimal place, so it should be 23.50
I cant figure out how to do this and any help i could get would be great