这是代码......
import textblob
While True:
print("Ok...")
print("Enter the text....")
text = input()
blob = textblob.TextBlob(text)
blob.translate(to = "de")
它要求发短信然后告诉我什么。任何帮助表示赞赏!
答案 0 :(得分:1)
这是一个有效的例子:
import textblob
while True:
text = input("Which text you want to translate:")
blob = textblob.TextBlob(text)
print("--> {0}".format(blob.translate(to = "de")))
您忘了打印德语翻译的字符串