Lesson Plan Grade 6
Lesson Plan Grade 6
python
RunCopy
print("Hello, World!")
• Wrap-up (10 mins): Discuss any issues faced during installation. Homework: Write
a program that prints their favorite quote.
python
RunCopy
• Wrap-up (10 mins): Share outputs with the class and discuss. Homework: Modify
the program to ask for their favorite color and print it.
python
RunCopy
age = 12
height = 150 # in centimeters
favorite_color = "blue"
print("Age:", age)
print("Height:", height, "cm")
print("Favorite Color:", favorite_color)
• Wrap-up (10 mins): Review the concept of variables. Homework: Write down three
variables about themselves.
python
RunCopy
num1 = 10
num2 = 5
print("Sum:", num1 + num2)
print("Difference:", num1 - num2)
python
RunCopy
python
RunCopy
python
RunCopy
print("Simple Calculator")
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))
operation = input("Choose operation (+, -, *, /): ")
if operation == "+":
print("Result:", num1 + num2)
if operation == "-":
print("Result:", num1 - num2)
if operation == "*":
print("Result:", num1 * num2)
if operation == "/" and num2 != 0:
print("Result:", num1 / num2)
python
RunCopy
character = "Alice"
place = "Wonderland"
print(character + " went to " + place + " for an adventure!")
python
RunCopy
character1 = "Bob"
character2 = "Lucy"
action = "discovered a magical tree"
print(character1 + " and " + character2 + " " + action + " in
the forest.")
python
RunCopy
character = "Alice"
print(character + " said, 'I love adventures!'")
• Wrap-up (5 mins): Share stories with dialogue.
python
RunCopy
python
RunCopy
import turtle
python
RunCopy
for _ in range(3):
turtle.forward(100)
turtle.right(120)
turtle.done()
python
RunCopy
turtle.fillcolor("blue")
turtle.begin_fill()
for _ in range(4):
turtle.forward(100)
turtle.right(90)
turtle.end_fill()
turtle.done()
python
RunCopy
# Draw square for the house
for _ in range(4):
turtle.forward(100)
turtle.right(90)