Posts

Home Work on 14-03-2026

  Project Presentations You need to present your AI projects. You have 2 minutes of time. Presentation Structure Students answer three questions: 1 ️ What problem does your AI solve? 2 ️ How does your AI work? 3 ️ Who does it help?

πŸ€– AI Project: “Mind Reader Number Guessing AI”

  πŸ€– AI Project: “Mind Reader Number Guessing AI” 🎯 Instructions for Students 1.       Think of a number between 1 and 20 . 2.       Do not tell the computer your number. 3.       Answer the computer’s questions with: o     yes o     higher o     lower The AI will try to guess your number . 🧠 πŸ’» Python Code (Small Range Version) print ( "πŸ€– Welcome to Mind Reader AI!" ) print ( "Think of a number between 1 and 20." ) input ( "Press Enter when you are ready..." ) low = 1 high = 20 while low <= high :     guess = ( low + high ) // 2     print ( " \n Is your number:" , guess )         answer = input ( "Type 'yes', 'higher', or 'lower': " )         if answer == "yes" :         pri...

Funny AI Project

  πŸ€– Funny AI Project AI Mood Detector  Idea The “AI” looks at what the user types and guesses their mood . Then it gives a funny response . Example Input: I am very hungry AI: “πŸ• You sound hungry! Go find pizza immediately!” Step 1: Open Google Colab Go to: https://colab.research.google.com Click New Notebook . Step 2: Copy This Code import random   print("πŸ€– Welcome to Funny AI Mood Detector!") print("------------------------------------")   text = input("Tell me something about how you feel today: ").lower()   happy_words = ["happy", "great", "good", "awesome", "fun"] sad_words = ["sad", "bad", "tired", "cry", "upset"] hungry_words = ["hungry", "food", "eat", "pizza", "burger"]   if any(word in text for word in happy_words):     responses = [         "πŸ˜„ Wow!...