我是靠谱客的博主 爱听歌钢铁侠,最近开发中收集的这篇文章主要介绍在python将字符串中的空格转换为下划线_在python bigrams中,将逗号替换为下划线...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我有一张单子。我可以在内部列表中生成双元组,如下所示:[[('bacteria', 'agricultur'), ('agricultur', 'soil'), ('soil', 'presenc'), ('presenc', 'sampl')],[('bacteria', 'agricultur'), ('agricultur', 'soil'), ('soil', 'presenc'), ('presenc', 'sampl')],[('nodul', 'uragensi')], [('nodul', 'stem'), ('stem', 'nodul')], [('deform', 'morphoid')]]

现在,我需要用下划线替换bigram元组中的逗号,这是我无法做到的。所以,结果应该是[[(bacteria_agricultur), (agricultur_soil), (soil_presenc), (presenc_sampl)],[(bacteria_agricultur), (agricultur_soil), (soil_presenc), (presenc_sampl)],[(nodul_uragensi)], [(nodul_stem), (stem_nodul)], [('deform'_'morphoid')]]

当我使用join时,它会出错texts = ["_".join(word) for word in texts]

错误:

^{pr2}$

如何产生上述输出?谢谢

最后

以上就是爱听歌钢铁侠为你收集整理的在python将字符串中的空格转换为下划线_在python bigrams中,将逗号替换为下划线...的全部内容,希望文章能够帮你解决在python将字符串中的空格转换为下划线_在python bigrams中,将逗号替换为下划线...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(76)

评论列表共有 0 条评论

立即
投稿
返回
顶部