💻 Coding Challenges
Sharpen your Python skills by solving real coding problems. Earn XP for each solved challenge!
Greet the User
Write a Python program that asks for a user's name and age, then prints a personalized greeting mess...
Simple Calculator
Write a Python program that takes two numbers and an operator (+, -, *, /) from the user and perform...
FizzBuzz
Print numbers from 1 to 100. - For multiples of 3, print "Fizz" - For multiples of 5, print "Buzz" -...
List Statistics
Write a function that takes a list of numbers and returns a dictionary with: - min: minimum value - ...
Palindrome Checker
Write a function is_palindrome(s) that returns True if the string is a palindrome, False otherwise. ...
Bank Account Class
Create a BankAccount class with: Attributes: - owner (str) - balance (float, default 0) - transacti...