pattern__imprimer-la-structure-des-mots.py 726 B

1234567891011121314151617181920212223
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from pattern.fr import parse, split
  4. texte = parse(u"Le chat joue au tennis.")
  5. def imprimer_structure_mot ( mot ):
  6. '''imprime la structure du mot'''
  7. print 'index : ' + str( mot.index )
  8. print 'string : ' + str( mot.string )
  9. print '_custom_tags : ' + str( mot._custom_tags )
  10. print 'sentence : ' + str( mot.sentence )
  11. print 'pnp : ' + str( mot.pnp )
  12. print 'chunk : ' + str( mot.chunk )
  13. print 'lemma : ' + str( mot.lemma )
  14. print 'type : ' + str( mot.type )
  15. # pour chaque phrase dans le texte
  16. for phrase in split( texte ):
  17. # pour chaque mot dans la phrase
  18. for mot in phrase.words:
  19. print "---"
  20. imprimer_structure_mot( mot )