pyt8~20171217-122727.py 295 B

1234567891011
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. # this programme compare a text in french and its translation in englishe and liste the common words .
  4. with open("JVFR.txt", "r") as textFr:
  5. for line in textFr:
  6. line=line.strip()
  7. mots=line.split()
  8. for mot in mots :
  9. print(mot)