<aside> 👨🏾💻 Hey there! I am John Afe.
</aside>
<aside> 💡 JOHN AFE
Data Science Intern - Kobo360
class Program:
def __init__(self, role, company):
self.role = role
self.company = company
result = Program("Data Science Intern", "Kobo360")
print(result.role)
print(result.company)
</aside>
HTML
JavaScript
Python
Git
CSS
MySQL
Apache Spark
PowerBI
Linked In - @afejohnibk
Github - @afejohnibk
E-mail - [email protected]
Phone Number - +2348146216145
Twitter - @afejohnibk
Facebook - @afejohnibk
Instagram - @afejohnibk
<aside> 📩 Company: Kobo360
<aside> 🎓 Lead City University, Ibadan
<aside> 💻 Front-end Web Development Bootcamp, Alusoft technologies
August 2019 - September 2019 (2 months)
<aside> 💻 Online Courses, Udemy, Simplilearn, DataCamp
<aside> 🛠 Predictive Analytics on house pricing in Nigeria
Built a predictive analysis model, with python, using RandomForest machine learning algorithm.
🔗 - https://github
⚙️ - Python, Numpy, Pandas, Colab, Github
</aside>
Development of a Vegetable Leaf Recognition System using Residual Network
Built a recognition system with python, using ResNet a deep learning algorithm.
🔗 - https://github
⚙️ - Python, Numpy, Pandas, Colab, streamlit ,Github
def greet_people():
num_people = int(input("How many people are there? "))
# Loop through each person
for _ in range(num_people):
name = input("What is your name? ")
print(f"Hello, {name}! Have a good time!")
greet_people()