OneCompiler
Perfect for beginners & kids

Learn Coding
the Fun Way
with Block Coding

Drag and drop colorful blocks to create programs. No typing complex syntax - just stack blocks and watch your code come to life!

print"2 Table"count withifrom1to10set result toi×2print "2 ×"i"="resultprint"Done!"

See Your Blocks Transform to Code

Watch how visual blocks convert to real programming languages - it's like magic!

print"2 Table"count withifrom1to10set result toi×2print "2 ×"i"="resultprint"Done!"# Python# Print multiplication tableprint('2 Table')for i in range(1, 11): result = i * 2 print(f'2 × {i} = {result}')print('Done!')