Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.43 KB | None | 0 0
  1. lines = [
  2.     'Earlier lines all omitted here',
  3.     'Junk line',
  4.     '<begin step data>',
  5.     '2001-01-10:218,37,356,621,466,319,147,774,231,167,399,150,417,34,3',
  6.     '2001-01-04:639,118,328,413,222,491,738,389,11,372,183,650,281,643,26,398,685,171',
  7.     '<end step data>',
  8.     'more junk',
  9.     'and still more',
  10. ]
  11. person = make_person(1294919, 'Russell', 97.00, 1.90, 24)
  12. process_steps(person, lines, 2)
  13. print_person(person)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement