You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
514 B

  1. #!/usr/bin/env python3
  2. #title :6-2.py
  3. #description :Opdracht 6.2 - Files Lezen
  4. #author :Marcel Haazen
  5. #email :marcel@haazen.xyz
  6. #date :03-10-2019 - 13:28
  7. #version :0.1
  8. #usage :python3 6-2.py
  9. #notes :
  10. #python_version :3.7.4
  11. #==============================================================================
  12. file = open("kaartnummers.txt", "r")
  13. for line in file:
  14. fields = line.split(",")
  15. print(fields[1].rstrip(), "Heeft kaartnummer:", fields[0])