import jieba.posseg as posseg

res = posseg.cut("我是中国人")
print(type(res))
for word, flag in res:
print(word, flag)

jieba分词及词性判断_词性