💻 Python Basics — Day 5 🔢 Today I practiced some important list-based problems in Python: 1️⃣ Find largest and smallest elements in a list 2️⃣ Remove duplicates from a list 3️⃣ Count how many times ...
🐍 Python Term of the Day: global (Python Keywords) Lets you declare that a variable used inside a function is global, which allows you to modify the variable defined outside of the current function ...