#python-projects
Read more stories on Hashnode
Articles with this tag
A beginner's guide to learning Python programming for FREE 路 Python has been around since the 90s, and an enormous amount of content is there to learn...
How I scraped 5,50,000 Odia news articles 路 Abstract To feed data-hungry NLP models of recent times, I have scraped 5,50,000+ news articles from their...
A guide to how to use OpenOdia language detector 路 Abstract I could not find a suitable language detection library for the Odia language. Around 45...
Cool Python tips and tricks 路 Ternary operator ans = z if a > b else c is same as if a > b: ans = z else: ans = c Short circuit result =...
List comprehension for nested or double for loops with conditions 路 Single for-loop with if condition my_list = [] for x in range(3): if x % 2 == 0: ...
Detailed Pycon CFP review process from a reviewer 路 Introduction I was one of the reviewers for Talk proposals at PyCon (Python Conference) India 2019,...