Fatma Ali
8 min read
NLP: Twitter Sentiment Analysis Project
We are living in a "data age" today. As the number of users on social media sites like Twitter grows rapidly, numerous opportunities and...
ukaegbu daniel
2 min read
WRITING A SIMPLE ARITHMETIC CALCULATOR PROGRAM WITH PYTHON
Python is a powerful programming language and there are facts to back that up. Yes of course! Another fact that may interest you is that...
Imene Maallem
2 min read
Python apps: know your age
These days, developers are highly likely to be working on a mobile or web application.Python is a rather universal programming language...
Mohamed Adel
2 min read
The Anagram
return true if string_1 is an anagram of string_2 An anagram is a situation where among the two given strings or numbers, one of them is...
Rashidat Sikiru
5 min read
Understanding Python Tuples
Tuples are a core data structure in Python. They let you store an ordered sequence of items. For example, a tuple may be used to store a...
fredy chimire
4 min read
Understanding of args and kwargs
args and kwargs allow you to pass multiple arguments or keyword arguments to a function. # Consider the following example. def my_sum(a,...
Aldwin Dave Conahap
2 min read
Exception-handling in Python
Have you encountered an error in the middle of the program runtime? Is the user input inputted incorrect data type as required? Does this...
Kala Maya Sanyasi
2 min read
BMI Calculator using Python
Body mass index (BMI) is the measure of the body fats based on height and weight of a person. High BMI can indicate high body fatness and...