𝗗𝗮𝘆 𝟯 | 𝗢𝗽𝗲𝗿𝗮𝘁𝗼𝗿𝘀 𝗮𝗻𝗱 𝗯𝗮𝘀𝗶𝗰 𝗶𝗻𝘁𝗲𝗿𝗮𝗰𝘁𝗶𝗼𝗻 Today’s session felt more practical compared to the previous ones, as I started working with operations and user interaction. 𝗧𝗼𝗽𝗶𝗰𝘀 𝗰𝗼𝘃𝗲𝗿𝗲𝗱: 💠 Arithmetic operators such as addition, subtraction, multiplication, and division 💠 Comparison operators like greater than, less than, and equal to 💠 Logical operators including and, or, and not 💠 Taking input from the user using input() 💠 Displaying output using print() Combining these concepts in small programs made things clearer. It now feels like I am actually using Python rather than just understanding theory, and that shift is making the learning more interesting. #Python #Operators #CodingBasics #DataAnalysis #LearningJourney
Practical Python Operators and User Interaction
More Relevant Posts
-
Day 12/30 🔹 Problem: Print multiplication table of a number 🔹 What I focused on today: Using loops to repeat calculations efficiently 🔹 My Thinking Process: Take a number as input Use a loop from 1 to 10 Multiply the number with each value Print the result step by step 👉 Repetition becomes easy with loops 🔹 Inputs I used: A number 🔹 Code: num = int(input("Enter a number: ")) for i in range(1, 11): result = num * i print(num, "x", i, "=", result) 🔹 Example: Input: 5 Output: 5 x 1 = 5 5 x 2 = 10 5 x 3 = 15 ... 5 x 10 = 50 🔹 Key Takeaway: Loops help automate repetitive tasks, making code more efficient and scalable #Day12 #Python #30DaysOfCode #LearningInPublic #DataAnalytics #ProblemSolving
To view or add a comment, sign in
-
-
Built something that actually recognizes me. I developed a Face Recognition Attendance System using Python and OpenCV that works in real-time. • Detects faces using Haar Cascade • Trains on custom dataset using LBPH algorithm • Recognizes individuals with confidence scoring • Automatically logs attendance with timestamps What started as a simple idea turned into solving real challenges — handling bad data, improving accuracy, and making the system reliable. This project pushed me from just learning concepts to actually building systems. Next: making it product-level with GUI and database. #Python #OpenCV #ComputerVision #MachineLearning #Projects #LearningByDoing
To view or add a comment, sign in
-
🚗 Built an Automatic Number Plate Recognition (ANPR) System! Excited to share my recent project where I developed a real-time ANPR system using YOLOv8 and EasyOCR. 🔍 Key Features: • Real-time number plate detection • OCR-based text extraction • Custom dataset creation This project helped me strengthen my skills in Computer Vision and Machine Learning. 🔗 GitHub Repository: https://lnkd.in/g_5r5wcW #MachineLearning #ComputerVision #YOLO #Python #DataScience
To view or add a comment, sign in
-
-
🤔 How much of your daily work is actually repetitive… but still takes hours to complete? During my online session on 𝐏𝐲𝐭𝐡𝐨𝐧 𝐀𝐮𝐭𝐨𝐦𝐚𝐭𝐢𝐨𝐧 𝐟𝐨𝐫 𝐎𝐟𝐟𝐢𝐜𝐞, 𝐑𝐞𝐩𝐨𝐫𝐭𝐬 & 𝐖𝐨𝐫𝐤𝐟𝐥𝐨𝐰𝐬, we explored how simple scripts can eliminate manual tasks that teams deal with every day. We focused on practical use cases: • Automating Excel data cleaning and report generation • Processing files and organising folders automatically • Extracting and compiling information from PDFs 🚀 The biggest shift wasn’t just learning Python, it was realising how many tasks can actually be automated with a few lines of logic! #trainer #training #ai #python #programming #automation
To view or add a comment, sign in
-
-
How can you evaluate an AI model's robustness before real-world failures occur? In this webinar, we’ll demonstrate how to use the open source Natural Robustness Toolkit (NRTK) to create reproducible workflows for testing model performance. You’ll learn how to: ✅ Install and configure NRTK in Python ✅ Apply perturbations to expand existing datasets ✅ Design parameter sweeps to measure performance degradation ✅ Evaluate models under simulated operational conditions 📅 April 15, 2026 | 12–1 PM 👉 Register here: https://ow.ly/Ncnr50YBmK7 #AIResearch #MachineLearning #ModelValidation #NRTK #Python
To view or add a comment, sign in
-
-
🗓 7 April 2026 LeetCode Problem #128 – Longest Consecutive Sequence Solved the problem of finding the longest consecutive sequence in an unsorted array. Key insight: use a set for O(1) lookups and only start counting sequences from numbers that are the beginning of a sequence. Takeaways: - Using the right data structure reduces time complexity from O(n²) to O(n). - Avoid redundant work while scanning arrays. - Handle edge cases like empty or single-element arrays efficiently. This problem reinforces how a smart approach beats brute force every time! #LeetCode #Algorithms #Python #DataStructures #ProblemSolving #Coding #TechLearning
To view or add a comment, sign in
-
-
Today I worked on a classic 2D array problem: Hourglass Sum. At first glance, it looks tricky—but the key insight is recognizing the pattern: Each hourglass uses 7 elements We only need to iterate up to index 4 (since it's a 6×6 grid) Track the maximum sum while scanning This problem reinforced how breaking a problem into patterns simplifies logic. Small wins like these build strong fundamentals in data structures. #DataStructures #ProblemSolving #Coding #Python #Learning
To view or add a comment, sign in
-
-
Developed a mini game using Python to help students explore the fundamentals of collision handling. Instead of just learning theory, this approach lets them see and interact how the collisions handles really by machines. This game is just explaining about the Types of Collision Handling: 1. Separate Chaining (Open Hashing) 2. Open Addressing (Closed Hashing): Linear Probing: Checks the very next slot(index to store the data) This is what you used in your game! Quadratic Probing Double Hashing Turning concepts into visual experiences really helps deepen understanding. Looking forward to building more such learning tools! #python #DSA #LearningByDoing #ComputerScience #DataScience
To view or add a comment, sign in
-
Not every day is about solving problems, some days are about understanding concepts. Day 38/100 — Data Structures & Algorithms Journey Today I focused on learning the Sliding Window technique instead of solving problems. Taking time to understand the pattern deeply before jumping into implementation. Today’s Focus: Understanding how sliding window works Learning when to expand and shrink the window Studying problem patterns where it applies Building intuition step by step Why this matters? Because strong concepts make problem-solving faster and more efficient. Key Takeaways: Learning is also progress Clarity builds confidence Patterns simplify complex problems Consistency matters more than intensity Taking it slow, but moving forward #Day38 #DSA #LeetCode #ProblemSolving #CodingJourney #100DaysOfCode #SoftwareEngineering #Python #InterviewPreparation #LearnInPublic #Consistency
To view or add a comment, sign in
-
What if recording starts on its own? Built a Smart Event Recorder that listens and reacts It detects sound, starts recording automatically, and stops when silence returns. No manual clicks — just smart automation. Python | OpenCV | Sound Processing GitHub: [Add link] #Innovation #Python #Projects #StudentDeveloper
To view or add a comment, sign in
-
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development