Student Scores Activity Create a list of 5 student names. Ask each student for their math score. Store all the scores in a separate list. Calculate the total score of…...
Supermarket Billing System You are building a mini supermarket checkout system where a cashier scans items, updates quantities, applies discounts, and prints a receipt. 🧾 Task Instructions 🔹 Step 1:…...
⛏️ Minecraft Shop Task (Clear Steps) Step 1: Add Items to Sell (List + Input) Ask the player to enter items they want to sell (one by one). Press 2…...
Python Quiz 1. What will this code print? games = ['roblox','minecraft','NeedForSpeed'] print(games[0]) A. minecraftB. robloxC. NeedForSpeedD. Error 2. What type of data is 50.5? A. IntegerB. StringC. FloatD. Boolean 3.…...
Ow Ow the Teddy Bear OwOw is Erin’s funny teddy bear. She has many strange and silly things about her. Below is OwOw’s information list. owow_details = [ 'Name: OwOw',…...
1️⃣ Fill in the Gap A list is ___________________, changeable, and allows duplicate values. 2️⃣ Fill in the Gap The function used to find the biggest number in a list…...
Classroom Reward Box Create a list called rewards with these items:sticker, pencil, badge, candy, bookmark.Print the list. Add toy car and coloring book to the end of the list.Print the…...
School Backpack Items Create a list called items with these values:book, pencil, eraser, ruler.Print the list. Add crayons and notebook to the end of the list.Print the updated list. Print…...
Collecting Snacks for a School Picnic View the Current Snacks Start with a list of snacks the students have already brought: apple, banana, carrot sticks, sandwich, juice box. Add More…...
Below are 30 direct coding questions based strictly on the activities ahead of w3schools exam Write a program that stores 5 numbers in a list and prints the highest number.…...
🎯 Student Task Design an algorithm and then write a Python program that helps a child decide what ice cream to buy, where to buy it, and what to do…...
1. List Append Understanding What will be the output? colors = [] colors.append("red") colors.append("blue") print(colors) 2. Extend vs Append Explain the difference between: list1.append(['a','b']) list1.extend(['a','b']) 3. Removing Elements What does…...
Write what you are looking for, and press enter to begin your search!