#!/usr/bin/env python
# coding: utf-8
# In[ ]:
pip install langdetect
# # Language Detection using Python
# In[13]:
from langdetect import detect
text = input("Enter any text in any language: ")
print(detect(text))
#clcoding.com
# In[ ]:
Python Coding April 16, 2022 Python No comments
Can you guess the output of the second piece of code?🐍
Posted by Python Coding on Tuesday, 16 February 2021
0 Comments:
Post a Comment