Section 1

Preview this deck

Guido van Rossum

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (110)

Section 1

(50 cards)

Guido van Rossum

Front

Creator of Python

Back

Function

Front

A relation in which each element of the domain is paired with exactly one element of the range

Back

Variables

Front

factors that change in an experiment

Back

Assigning a Variable

Front

Assigning to a variable is updating the variable's value

Back

Commands

Front

Instructions that you give to a computer for it to carry out an action. Commands are either typed by using a keyboard or are chosen from a menu.

Back

Classic computer science

Front

is study of computers it includes software and hardware

Back

right()

Front

turns right

Back

User input as a number

Front

int(

Back

Defining a variable

Front

Choosing a variable and deciding what the variable represents.

Back

left()

Front

turns left

Back

advanced circle( , , ) three parts

Front

draws a more advanced circle

Back

Python Software Foundation

Front

A nonprofit organization devoted to the Python programming language, launched on March 6, 2001.

Back

Interpreted

Front

Understood

Back

variable_name = input("text prompt")

Front

inputs text into the code

Back

comments

Front

Using descriptive text to explain portions of code. Comments do not change the way a robot behaves, but are important for the programmer to remember what the code does.

Back

for i in range()

Front

to loop a set of code

Back

color()

Front

changes the color of the picture being drawn by the turtle

Back

speed()

Front

changes the speed of which the turtle draws the code

Back

variable_name = int(input("text prompt"))

Front

can call a text onto the code (asks a question)

Back

Python

Front

is an interpreted, high-level, general-purpose programming language.

Back

circle()

Front

draws a circle

Back

Argument

Front

a statement of the meaning or main point of a literary work

Back

Functions

Front

A prewritten formula that provides a shortcut to common calculations

Back

end_fill()

Front

Remember the ending point for a filled polygon

Back

Parameters

Front

Extra bits of information that you can pass into a function to customize it

Back

function_name()

Front

Format for calling functions is:

Back

penup()

Front

picks the turtle pen up

Back

Source Code

Front

Contains instructions written by a programmer specifying the actions to be performed by computer software

Back

Syntax

Front

The arrangement of words and phrases to create well-formed sentences in a language.

Back

backward()

Front

moves backwards from the direction you are facing

Back

pensize()

Front

changes the size of the pen

Back

pendown()

Front

puts the turtle pen down

Back

Source Files

Front

The java files that comprise your program.

Back

int()

Front

internal, interior

Back

Command Prompt

Front

Understands the instructions you write in the Python language

Back

Call

Front

To call

Back

def function_name():

Front

Function header format is:

Back

#

Front

adds a comment

Back

Integer

Front

All whole numbers (both positive and negative) and zero.

Back

setposition(x,y)

Front

moves the turtle to a set position

Back

Naming Guidelines Funtcions

Front

Avoid names longer than 25 characters if exposed publicly.

Back

Integrated Development Environment (IDE)

Front

Provides a developer with a way to create a program, run the program, and debug the program all within one application.

Back

Top Down Design

Front

Starting with a broad concept and breaking it down into smaller and smaller pieces.

Back

Terminal

Front

Causing or forming an end

Back

begin_fill()

Front

Remember the starting point for a filled polygon

Back

Code Statements

Front

A statement is a syntactic unit of an imperative programming language that expresses some action to be carried out.

Back

Loops

Front

A loop is used to repeat code in your program.

Back

Interpreter Program

Front

Understands the instructions you write in the Python language

Back

Cross-platform

Front

In computing, cross-platform software is computer software that is implemented on multiple computing platforms.

Back

forward()

Front

moves forward in the direction you are facing

Back

Section 2

(50 cards)

if condition: commands

Front

if something is correct then another thing is perfomed

Back

def function_name(parameters)

Front

defining what the function is with the name and all of that

Back

Double For Loop

Front

Double-loop learning entails the modification of goals or decision-making rules in the light of experience. The first loop uses the goals or decision-making rules, the second loop enables their modification, hence "double-loop".

Back

if/Else Statements

Front

An if-else statement checks to see if a condition is met or true, if the condition is met the program runs one set of code. If the condition is not met a different set of code will be run.

Back

Mathematical Operators

Front

Symbols used in mathematical operations: + for addition, - for subtraction, * for multiplication, / for division, and ^ for exponentiation.

Back

In function definition

Front

The place where you assign a series of actions to one easy to remember name

Back

Scope

Front

instrument for visual examination

Back

Input Function

Front

How the player will enter text into the program through the keyboard

Back

Exponent

Front

A mathematical notation indicating the number of times a quantity is multiplied by itself.

Back

else:

Front

Another way of saying "Otherwise"

Back

Namespaces

Front

are the databases of information needed to resolve domain names and IP addresses

Back

if Statements

Front

The common programming structure that implements "conditional statements".

Back

iteration

Front

the repetition of a process or utterance.

Back

elif condition:

Front

If you have multiple elif then you can utilize dictionary data type in python.

Back

function_name (arguments)

Front

assigning the name in the arguement

Back

float

Front

A native type representing rational numbers to limited precision.

Back

Subtraction

Front

An operation in which we take away 1 number from another to get a smaller number

Back

While Loops

Front

used to repeat actions without the player needing to write the same lines of code over and over

Back

Range Function

Front

The set of all possible output values of a function

Back

for i in range (ending_num)

Front

for i in range (ending_num)

Back

Type Function

Front

tells us whether the number is int or float

Back

int

Front

A native type representing the integers, which are positive whole numbers and their opposites.

Back

Booleans

Front

having two possible values called "true" and "false."

Back

Round Function

Front

The ROUND() function is used to round a numeric field to the number of decimals specified. NOTE: Many database systems have adopted the IEEE 754 standard for arithmetic operations, according to which the default rounding behavior is "round half to even." In this scheme, .5 is rounded to the nearest even integer. So, both 11.5 and 12.5 would be rounded to 12. SELECT ROUND(column_name,decimals) FROM table_name;

Back

Venn Diagram

Front

A diagram that uses circles to display elements of different sets. Overlapping circles show common elements.

Back

Not Equal to

Front

Relational operator used to determine if one value is not equal to another.

Back

Function Composition

Front

Using the output of one function as the input of another function

Back

Greater Than or Equal to

Front

a value that is "at least" as big as another value has a closed circle

Back

Division

Front

division

Back

for i in range(starting_num, ending_num, increase_by):

Front

how much the code runs, stops, and then increases by

Back

In function call

Front

The piece of code that you add to a program to indicate that the program should run the code inside a function at a certain time.

Back

Assignment Statement

Front

Uses the equal sign to give the object property on the left of the equal sign the value on the right of the equal sign.

Back

while condition: commands to perform

Front

while the code is running there are multiple things you can do to it and can do an infinite loop

Back

str function

Front

converts value to string

Back

Less Than or Equal to

Front

a value that is "at most" as big as another value has a closed circle

Back

Addition

Front

in addition

Back

Continue Function

Front

The continue statement in Python returns the control to the beginning of the while loop. The continue statement rejects all the remaining statements in the current iteration of the loop and moves the control back to the top of the loop. The continue statement can be used in both while and for loops.

Back

Print Statement

Front

An instruction that causes the Python interpreter to display a value on the screen.

Back

Concatenation

Front

Attaching two things side-by-side, frequently strings of text.

Back

Operators

Front

The symbols with which you can specify the type of calculation you want to perform in an Excel formula.

Back

greater than

Front

used to compare two numbers when the first number is larger than the second number.

Back

clear()

Front

To remove all of the formatting applied to a cell or range of cells.

Back

Less Than

Front

Less than is used to compare two numbers when the first number is smaller than the second number.

Back

Type (element)

Front

determined by the number of protons

Back

Crossplatform

Front

Software that can run on multiple types of computer systems.

Back

Break Function

Front

Python break statement Thebreakstatement terminates the loop containing it. Control of the program flows to the statement immediately after the body of the loop. Ifbreakstatement is inside a nested loop (loop inside another loop),breakwill terminate the innermost loop.

Back

multiplication

Front

An operation used for the shortening of repeated addition

Back

Modulus

Front

The number of states through which a counter sequences before repeating.

Back

Equal to

Front

having the same value

Back

Truth Tables

Front

tables that summarize how the computer evaluates the logical operators in an expression

Back

Section 3

(10 cards)

Return Element

Front

In simple terms, the index() method finds the given element in a list and returns its position.

Back

Sequential Programming

Front

The style of writing code in a "top-down" format; statement execution occurs in order from the beginning to the end of the code.

Back

Logical Operators

Front

&& [and] || [or] ! [not]

Back

Print Function

Front

A function used in a program or script that causes the Python interpreter to display a value on its output device.

Back

Exceptions

Front

Matters affecting title to a particular parcel of real property which are included from coverage of a title insurance policy.

Back

Try

Front

to try

Back

Exceptions

Front

Matters affecting title to a particular parcel of real property which are included from coverage of a title insurance policy.

Back

Non-Sequential Programming

Front

A program in a non-structured language uses unstructured jumps to labels or instruction addresses.

Back

Return Values

Front

the data values you want to retrieve from the lookup table and are located in the second and subsequent columns

Back

Comparison Operators

Front

Symbols that are used to evaluate data in the field to determine if it is the same (=), greater than (>), less than (<), or in between a range of values as specified by the criteria.

Back