Syntax
String
Lists
________
Database or Dictionarys
100

What do you use to comment lines in python?

octothorpe #

100
What is a string?

list of chars

100

This is the term for an individual item in a list

element

100

A group of statements that exist within a program for the purpose of performing a specific task

Function

100

What Operator is used to dertermine if a key exists in the Dictionary

in

200

What is an invalid variable name

starting with number or char

200

This function returns a string with leading and trailing white spaces removed.

strip()

200

What built in function returns the highest value of a list?

max

200

A function that does things without returning a value is this type of function

void function

200

This is a column that holds a unique value for each row and can be used to identify specific rows 

Primary Key
300

what is the extention to the python files.

.py

300

This method returns true if all of the alphabetic letters in the string are lowercase, and the string contains at least one alphabetic letter. Returns false otherwise.

islower()

300

Letters = [ [F, G], [Q, P], [S, V]]

Letters[2][1] returns what letter?

V

300

This is the piece of data sent into a function?

argument

300

What method returned all keys and values in a dictionary as a sequence of tuples?

items()

400

what is the keyword used to build a function?

def

400

What does the code display?

 mystr = 'abc' * 3

 print(mystr)

abcabcabc

400

What does this code do?

list = list[ : len(list)-1]

gets everything exept the last element

400

An item that appears in a program’s graphical user interface is known as a____________.

widget

400

What does the Acronym CRUD stand for

Create Read Update Delete

500
What is the diference between using a method vs using a function 

item.method()

function(item)

500

This method returns the lowest index in the string where substring is found. If substring is not found, the method returns −1.

find()

500

numbers = [1,2,3,4,5,6]

squared_numbers = [________________________]

[num2 for num in numbers]
500

These buttons allow the user to select only one of several possible options.

Radio buttons

M
e
n
u