12345678910111213141516171819202122 |
- # coding:utf-8
- from pattern.fr import parse, split
- texte = parse(u"Le chat joue au tennis.")
- def imprimer_structure_mot ( mot ):
- '''imprime la structure de la phrase'''
- print 'index : ' + str( mot.index )
- print 'string : ' + str( mot.string )
- print '_custom_tags : ' + str( mot._custom_tags )
- print 'sentence : ' + str( mot.sentence )
- print 'pnp : ' + str( mot.pnp )
- print 'chunk : ' + str( mot.chunk )
- print 'lemma : ' + str( mot.lemma )
- print 'type : ' + str( mot.type )
- for phrase in split( texte ):
- for mot in phrase.words:
- # print mot.__dict__.keys()
- print "---"
- imprimer_structure_mot( mot )
|