Using Google Colab as an Alternative for Data Analysis
📖 Scenario: You want to analyze sales data but do not have Python installed on your computer. Google Colab is a free online tool that lets you write and run Python code in your browser without installation.In this project, you will create a simple sales data dictionary, set a sales threshold, filter the sales above that threshold, and print the filtered results using Google Colab.
🎯 Goal: Build a small Python program in Google Colab that stores sales data, sets a sales threshold, filters sales above the threshold, and prints the filtered sales.
📋 What You'll Learn
Create a dictionary called
sales with exact product names and sales numbersCreate a variable called
threshold with a specific sales numberUse a dictionary comprehension to filter
sales for products with sales above thresholdPrint the filtered dictionary
💡 Why This Matters
🌍 Real World
Filtering sales data helps businesses focus on products that sell well. Google Colab allows you to do this analysis anywhere without installing software.
💼 Career
Data analysts and scientists often use online tools like Google Colab to quickly explore and analyze data before sharing results with teams.
Progress0 / 4 steps