bash
pip install textblob
python
from textblob import TextBlob
python
blob = TextBlob(chinese_text)
converted_text = blob.translate(to='en')
print(converted_text)
python
blob = TextBlob(chinese_text)
translated_text = blob.translate(to='ja')
print(translated_text)