Langauge Detection using Python
I am Junior Data Scientist, using python for my analysis and modelling. I have few projects i have worked on and I'm loving this process. I'm open to working with anyone willing to help me through this process.
using this simple codes in python, you can detect languages being entered
pip install langdetect>
from langdetect import detect text= input ("Enter Text in any language: ") print = (detect(text))

