top of page
Profile
Join date: Dec 31, 2021
About
0 likes received
0 comments received
0 best answers
Overview
First Name
WILSON EMMANUEL
Last Name
WAHA LINDJECK
Posts (7)
Sep 24, 2022 ∙ 1 min
Python code To check an Email
This function is use to checks an email for the @ symbol
def email_verifier(email): arobase_symbol = '@' if arobase_symbol in email: print("The email address is correct") else: print("Please...
13
0
Aug 21, 2022 ∙ 1 min
Python for Data science
python is a programming language created by Guido Van Rossum. It is part of the family of interpreted languages, it is very easy to...
9
0
1
May 13, 2022 ∙ 2 min
Pandas Techniques for Data Manipulation in Python
Pandas is a great library for data Manipulation, it offers many tools to analyse data. Pandas is made up by numpy and matplotlib, so it...
11
0
May 6, 2022 ∙ 1 min
Map function
A simple way to apply a function to each element of an iterator is using the map function. It replaces the for loop which uses a lot of...
5
0
May 6, 2022 ∙ 1 min
Classes in python
A mold is an object that always produces elements of the same shape. In the same way a class is a container which allows to create...
4
0
1
May 6, 2022 ∙ 1 min
Blood sugar monitor
Glucose shows your blood sugar level. It is important to know your blood sugar level to prevent possible complications. There are several...
10
0
1
May 6, 2022 ∙ 1 min
Password generator from first names
Since the creation of the Internet, people have accessed sites, created accounts requiring passwords. some people have difficulty...
14
0
1
Wilson Waha
Writer
More actions
bottom of page