week 7 functions with turtle graphics Flashcards
turtle graphics
python module for learning drawing
importing turtle module syntax
import turtle
import random
setting up turtle screen
s = turtle.getscreen()
setting up turtle object
t = turtle.Turtle()
change color of screen
originally black, but can be changed with the following function
s.bgcolor(‘blue’)
turtle screen
center is (0,0), like a graph (100 is typically a quarter of the way through)
customize turtle
you can customize speed, shape, fill color, pen color, and width
customize turtle syntax
t.width(5)
function
‘blueprint’ you can call onto later to repeat a chunk of code many times
function syntax
def funName():
# function body
function call syntax
funName()
how do you call a function repeatedly?
with a for loop
purpose of a function
improve code readability, reduce redundancy, facilitate modular/incremental programming
function parameters
assigns variables that are defined when function is called
basically input arguments and what they are called in terms of the function
random.randint()
randomly generates integers between and including two arguments
computational thinking
creating series of instructions to solve a problem
algorithm
series of instructions that solves a specific problem
def keyword
used to define new functions
return statement
used so function can return a value (can appear anywhere in function body and can have multiple return statements)
None
keyword that means no value, if function doesn’t have return it outputs None
arguments
value provided to the function’s parameters during the function call
hierarchal/nested function calls
function call inside of a function call
i.e int(input())
void function
function that doesn’t return anything
polymorphism
using multiplication operator to repeat a section of text/char multiple times in print statement (python only)
dynamic typing
determines type of objects as program executes (python)
static typing
requires program to declare type and program parameters in the source code (C, C++, Java)
modular development
dividing program into separate modules that are individually developed and tested before being integrated into a single program
function stub
function definition who’s statements have not yet been written (placeholder)
pass function
does nothing and returns nothing, can be used as a placeholder for function body until it’s written