Member-only story
Simple Code Examples to Inspire Children’s Interest in Programming
Introduction: Programming is a fun and useful skill that can cultivate children’s logical thinking and creativity. Through simple code examples, we can engage young children in learning programming and help them explore the world of coding joyfully.
#1. Drawing Shapes
import turtle
# Create a turtle pen
pen = turtle.Turtle()
# Move and draw a square
for _ in range(4):
pen.forward(100)
pen.right(90)
# Finish drawing
turtle.done()
This code uses the turtle library in Python to draw a simple square. Children can see the connection between the code and the graphical output. By modifying parameters and adjusting the code, they can create more interesting shapes.
#2 Printing Numbers
for i in range(1, 11):
print(i)
This code uses a loop to print numbers from 1 to 10. By running the code, children can observe how a loop can repeat certain actions. They can also try modifying the code to print other number sequences.
#3. Guessing Game
import random
# Generate a random number
target = random.randint(1, 100)
# Guessing game
while True:
guess = int(input("Guess a number between 1 and 100:"))
if guess == target…