我使用TextBlob翻译句子,而对于我的生活,我无法弄清楚如何将翻译后的文本检索为字符串。例如
<configSections>
<sectionGroup name="businessObjects">
<sectionGroup name="crystalReports">
<section name="printControl" type="System.Configuration.NameValueSectionHandler" />
<section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
</sectionGroup>
</sectionGroup>
</configSections>
<businessObjects>
<crystalReports>
<crystalReportViewer>
<add key="documentView" value="weblayout" />
</crystalReportViewer>
</crystalReports>
</businessObjects>
如何将翻译后的文本指定为变量?浏览文档并没有帮助。
答案 0 :(得分:2)
啊,我明白了,foobar = str(foo)。这就是所需要的一切。 foobar现在只是一个普通的老字符串。