pattern__imprimer-la-structure-des-mots~20171216-160909.py 666 B

12345678910111213141516171819202122
  1. # coding:utf-8
  2. from pattern.fr import parse, split
  3. texte = parse(u"Le chat joue au tennis.")
  4. def imprimer_structure_mot ( mot ):
  5. '''imprime la structure de la phrase'''
  6. print 'index : ' + str( mot.index )
  7. print 'string : ' + str( mot.string )
  8. print '_custom_tags : ' + str( mot._custom_tags )
  9. print 'sentence : ' + str( mot.sentence )
  10. print 'pnp : ' + str( mot.pnp )
  11. print 'chunk : ' + str( mot.chunk )
  12. print 'lemma : ' + str( mot.lemma )
  13. print 'type : ' + str( mot.type )
  14. for phrase in split( texte ):
  15. for mot in phrase.words:
  16. # print mot.__dict__.keys()
  17. print "---"
  18. imprimer_structure_mot( mot )