Guest User

Untitled

a guest
Jan 24th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. # -*- coding: iso-8859-1 -*-
  2.  
  3. tiedosto = open('grading_in.txt', 'r')
  4. otsikko = tiedosto.readline()
  5. tiedosto.readline()
  6. tiedosto.readline()
  7.  
  8. while True:
  9. rivit = tiedosto.readline()
  10. if len(rivit) == 0:
  11. break
  12. rivit.split()
  13. print rivit[0]
Add Comment
Please, Sign In to add comment