seg.py 155 B

123456789
  1. import jieba
  2. def main():
  3. lst = jieba.cut('<[email protected]>:羡慕', cut_all=False)
  4. print('/'.join(lst))
  5. if __name__ == "__main__":
  6. main()