pyt5~20171217-114236.py 311 B

123456789101112
  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. words=line.split
  7. for word in words :
  8. print(word)
  9. #nbs=len(words)
  10. #print (nbs)