compsci certification

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/22

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

23 Terms

1
New cards

IndexError


An attempt to access a non-existent list element (when the index goes out of the permissible range) raises the ___ exception


2
New cards

slice

means by which the programmer can create a new list using a part of the already existing list.

3
New cards

slicing example

my_list = [10, 20, 30, 40, 50]

print(my_list[1:4]) [20, 30, 40] (Index 4 is NOT included)

print(my_list[:3]) [10, 20, 30] (Start from 0)

print(my_list[2:]) [30, 40, 50] (Go until the end)

4
New cards

slicing example

the_list = [0, 1, 2, 3]

print(the_list[-3:-1])

answer: [1.2]. Just like the range, you subtract one from the end so instead of 3 it is 2.

5
New cards

list_b = list_a[:]

is a slicing operator in Python. It’s used to create a copy of the list, from beginning to end, which is a shorthand for copying a list.

6
New cards

list_a = [1]

list_b = list_a[:]

list_b[0] = 0

print(list_a[0] == list_b[0])


This is FALSE, because it changes the b(1) to a b(0) and since a does not have a 0, and 0 is not equal to 1, it is false.

7
New cards


the_list
= []

the_list.append(1)

print(the_list)

It appended, or added one to the list

8
New cards

the_list = [1]

the_list.insert(0, 2)

print(the_list)

answer: [2,1]

the 0 tells you what place to put the 2. So then the 0 is replaced with the 2 from the 1, pushing it to the right and giving you [2,1]

9
New cards

the_list = [1, 'a']

print('a' in the_list, 1 not in the_list)

would give you true and false because a and 1 are both in the list

10
New cards
  1. Strings and tuples are immutable and their contents cannot be changed.

yea

11
New cards

error that comes when trying to add or take away from a tuple

TypeError

12
New cards
  1. An attempt to access a non-existent tuple element raises the __ exception.


Index error

13
New cards

An attempt to access an element whose key is absent in the dictionary raises the__ exception

KeyError

14
New cards
  1. Function definition must precede its invocation. Breaking this rule raises the ____ exception.

NameError

15
New cards

def function(a, b, c):

print(a, b, c)

function(1, c=3, b=2)


answer: 1 2 3

16
New cards

function(1, a=1, b=2)

TypeError

17
New cards

scope

part of the code where a certain name is properly recognizable.

18
New cards

def function(parameter):

parameter = [2]

the_list = [1]

function(the_list)

print(the_list)

1

19
New cards

def function(parameter):

parameter[0] = 2

the_list = [1]

function(the_list)

print(the_list)

2

20
New cards

def process (data):

data=[1,2,3]

return data[-2]

measurements = [0 for i in range (3)]

process(measurements)

print(measurements[-2])

0 → only pay attention to the measurements part which has a range of three, 0,0,0

21
New cards

def process (data):

data[1]=2

return data[-2]

measurements = [0 for i in range (3)]

process(measurements)

print(measurements[-2])

changes the 0,0,0 to 0,2,0 and it asks for -2 value so answer is 2

22
New cards

def combine(width, height=2, depth=0, is_3D= False):

return(is_3D, width, height, depth)

print(combine(1)[2])

so width is 1 and it returns a tuple seen in the parenthesis. Then, according to this the order is False, 1,2,0 and the {2} index of this tuple is 2

23
New cards

def walk(top):

if top==0:

return 0

return top+walk(top-1)

print(walk(2))

3