🎮 Python Block Playground

🎯 Try These Challenges:

1. Print your name 5 times using a loop
2. Create a list of 3 fruits and print each one
3. Make a function that adds two numbers
4. Check if a number is greater than 10
📝 PRINT
print("text")
📦 VARIABLES
name = value
num = 0
🔁 LOOPS
for i in range(5):
for item in list:
❓ CONDITIONS
if condition:
else:
🎯 FUNCTIONS
def name():
function()
📋 LISTS
list = []
list.append(item)
👈 Drag blocks here to build your program!
💻 Python Code:
// Your code will appear here
📺 Output:
Ready to run...