You are going to screenshot all of your work into a Powerpoint file.
To save your powerpoint go to: File explorer -> Year 9 Common Area:S -> You can save here -> Computer Science -> Term 1 -> Lesson2
Save the Powerpoint file: as your name
Tick each task when you have successfully done it in the following list:
It should look like this:
import turtle # Set up the window and its attributes wn = turtle.Screen() # Choose our background colour. US spelling. wn.bgcolor("white") # Window title wn.title("Turtle Power") # Create tim and set some attributes tim = turtle.Turtle() tim.color("green") tim.pensize(5) # Repeat the indented instructions 4 times. for myMoves in range(4): tim.forward(100) tim.left(360/4) # Wait until the window is closed. wn.mainloop()
#ask the user to input the size of our shape size=int(input("What size lines would you like? ")) # Repeat the indented instructions 3 times. for myMoves in range(3): tim.forward(size) tim.left(360/3)
Tick each extension task when you have completed it in the following list:
Lets look at the learning outcomes and decide which one best describes our current level of understanding :
Tick the one you feel is closest to your level
Complete the review slide below for Homework