CCYI GLOBAL ACADEMY
Shop beginner-friendly tech courses, practical training tutorials, data tools, web development content, automation, and digital skills courses from Palace Tech Hub.
Shop beginner-friendly tech courses, practical training tutorials, data tools, web development content, automation, and digital skills courses from Palace Tech Hub.
Pay by Bank Transfer
Bank Name: UNITED BANK FOR AFRICA
Account Name: CCYI GLOBAL ENTERPRISE
Account Number: 1017417XXX
After payment, click “Confirm Payment on WhatsApp” below and send your proof of payment.
Total: ₦0

NumPy stands for Numerical Python.
👉 It is a Python library used for:
Simple Meaning:
👉 NumPy = Faster and easier way to work with numbers in Python
NumPy is:
Install using:
pip install numpy
import numpy as np
👉 np is just a shortcut name.
👉 NumPy works with arrays (like lists but more powerful).
import numpy as np
arr = np.array([1, 2, 3, 4])
print(arr)
# Python list
list1 = [1, 2, 3]
# NumPy array
arr1 = np.array([1, 2, 3])
👉 NumPy arrays are:
arr = np.array([1, 2, 3])
arr = np.array([[1, 2], [3, 4]])
arr = np.array([1, 2, 3])
print(arr + 2)
👉 Output: [3, 4, 5]
print(arr * 2)
👉 Output: [2, 4, 6]
np.zeros((2, 2))
np.ones((3, 3))
np.arange(0, 10)
arr = np.array([10, 20, 30])
print(arr[0]) # Output: 10
arr = np.array([[1, 2], [3, 4]])
print(arr.shape)
👉 Output: (2, 2) → 2 rows, 2 columns
import numpy as np
scores = np.array([50, 60, 70, 80])
average = np.mean(scores)
print("Average score:", average)
Students can use NumPy for:
NumPy is used with:
👉 NumPy is:
👉 “If Python is the brain, NumPy is the calculator that makes it powerful.”
Hobby (Free) Plan You can have up to 200 projects (websites/apps) under one account. Each project can have its own: Production deploy...