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
Python is a high-level programming language used to build software, automate tasks, and analyze data.
👉 In simple terms:
Python = a language for telling computers what to do
Python is:
Python is used for:
To start Python:
print("Hello, World!")
👉 This displays text on the screen.
name = "John"
age = 20
👉 Variables store information.
"Hello"103.14True / Falsename = input("Enter your name: ")
print("Hello", name)
👉 Python can interact with users.
age = 18
if age >= 18:
print("You are an adult")
else:
print("You are underage")
for i in range(5):
print(i)
count = 0
while count < 5:
print(count)
count += 1
def greet():
print("Hello!")
greet()
👉 Functions help reuse code.
fruits = ["apple", "banana", "orange"]
print(fruits[0])
name = input("What is your name? ")
age = int(input("Enter your age: "))
if age >= 18:
print(name, "is an adult")
else:
print(name, "is a minor")
👉 In web development:
Students can use Python to:
👉 Python is:
👉 “Python is not just a programming language—it is a problem-solving tool for the digital world.”
There are different kinds of bots, so the easiest way to learn is to start with one simple type.
A bot is just a program that performs tasks automatically based on rules or user input.
Common types of bots:
A simple beginner path looks like this:
Before writing code, define the bot’s purpose.
Examples:
A good bot has:
Bots are usually built for a platform.
Examples:
For beginners, the best options are:
Most bots follow this flow:
User sends input → Bot receives it → Bot checks rules/logic → Bot sends response
Example:
/hello
A beginner bot can respond to keywords.
Example in Python:
def bot_reply(message):
message = message.lower()
if "hello" in message:
return "Hi! How can I help you?"
elif "price" in message:
return "Our price starts from ₦10,000."
elif "bye" in message:
return "Goodbye!"
else:
return "Sorry, I don't understand that yet."
user_message = input("You: ")
print("Bot:", bot_reply(user_message))
This is the simplest type of bot.
Most real bots use APIs.
An API allows your bot to communicate with another platform.
Examples:
This is how your bot sends and receives messages on those platforms.
A common beginner project is a Telegram bot.
Basic steps:
Example idea:
/start → welcome message
/about → your business info
/contact → phone number or email
Once the simple version works, you can add:
If you want it online all the time, host it on:
Check:
You can start with any of these:
To create bots well, learn:
Week 1:
Week 2:
Week 3:
Week 4:
There are two broad categories:
For a beginner, start with rule-based, then move to AI bots later.
Hobby (Free) Plan You can have up to 200 projects (websites/apps) under one account. Each project can have its own: Production deploy...