Practice Challenges
Master programming with 24 hands-on challenges across all courses. Choose any challenge to start coding!
Challenges by Course
Select any challenge to start practicing
Python
JavaScript
HTML/CSS
C++
C#
Java
PHP
SQL
AI & Machine Learning
💡
Pro Tips
- • Start with Easy challenges to build confidence
- • Read the hint if you're stuck
- • Try solving without looking at hints first
- • Experiment and modify the code
- • Check the console for output
Hello Name
Python
Easy
Create a program that prints a personalized greeting with your name.
💡 Hint: Try using an f-string for cleaner formatting: print(f'Hello, {name}! Welcome to Python!'). F-strings are the modern Python way to format strings.
Code Editor
Output
Click "Run" to see output...