Difference between revisions of "IB Computer Science 1"

From WLCS
Line 3: Line 3:
 
* Review functions
 
* Review functions
 
* Demo [[Turtle - Graphing Calculator]]
 
* Demo [[Turtle - Graphing Calculator]]
* Complete [http://codingbat.com/python/Logic-1 Logic-1] by the end of next week
+
* Complete [http://codingbat.com/python/Logic-1 Logic-1] by the beginning of next week
  
 
== Tuesday - Wednesday (10/15/13 - 10/16/13) ==
 
== Tuesday - Wednesday (10/15/13 - 10/16/13) ==

Revision as of 14:53, 17 October 2013

Thursday (10/17/13)

Agenda:

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

Agenda:

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