Code python - 1000 câu hỏi ngáo ngơ ( API )
![]() |
| Code python - 1000 câu hỏi ngáo ngơ ( API ) |
+ CODE:
import requests
from googletrans import Translator
mau = Translator()
cauhoi_en = requests.get("https://official-joke-api.appspot.com/random_joke").json() #api lấy câu hỏi
dich = mau.translate(cauhoi_en["setup"], dest="vi") # dịch từ tiếng anh về tiếng việt
print(dich.text)
