Difference between revisions of "IB Computer Science 1"

From WLCS
Line 1: Line 1:
 +
== Tuesday - Wednesday (10/15/13 - 10/16/13) ==
 +
* Make sure that you have completed the basic [[Turtle - Graphing Calculator]]
 +
* Read the beginning section of [http://openbookproject.net/thinkcs/python/english3e/fruitful_functions.html Fruitful Functions] and pay attention to the '''return''' keyword
 +
* Skim/review [[http://www.pythonforbeginners.com/python-functions-cheat-sheet/ Python Functions Cheat Sheet]]
 +
* CodingBat Python Functions
 +
*# Go to [http://codingbat.com/ CodingBat] and create an account
 +
*# Login and go to '''prefs->teacher share''' and use [[Image:BuiEmail.bmp]]
 +
*# Complete as many of [http://codingbat.com/python/Warmup-1 Warmup-1] as you can before the end of the period (try not to look up the solutions)
 +
 
== Thursday - Friday (10/10/13 - 10/11/13) ==
 
== Thursday - Friday (10/10/13 - 10/11/13) ==
 
* [http://jamtech.me/ JAMTECH]
 
* [http://jamtech.me/ JAMTECH]

Revision as of 16:04, 11 October 2013

Tuesday - Wednesday (10/15/13 - 10/16/13)

Thursday - Friday (10/10/13 - 10/11/13)

Friday - Wednesday (10/4/13 - 10/9/13)

Warmup:

  • Execute the code below
  • When prompted, use 100 for x and 200 for y
  • What does each line do? Analyze!
from turtle import *

setup(200, 400)
screensize(200, 400)
x = numinput("X prompt", "Please enter an x")
y = numinput("Y prompt", "Please enter a y")
goto(x,y)
exitonclick()

Agenda:

Wednesday - Thursday (10/2/13 - 10/3/13)

Agenda:

Tuesday (10/1/13)

Archives