what will it put
stuff like dictionaries and sets!
slice
stuff
special
100
e='python'

e[0]=p

wont change cuz its string
100

x={1,2,3,4}

print(x)

what does it output and is it a dictionariy or set

set and it puts out 

{1,2,3,4}

100

where does slicing start

0

100

text = "hello world"
print(text.uppercase()) 

will this pop an error

yes

100

what is a list denoted by 

[]

200

e_1=['p','y','t','o','n']

e_1[0]=PP

yes will work

200

what does intersect do

it finds the values that are the same!

200

WHAT IS THE WAY THE ORDER WORKS IN THESE LIKE ::: WHAT DO THEY DO

START STOP MULTIPLY

200

The output of the following code will be "Not Found".

word = "Python Programming"

if "Program" in word:
    result = "Found"
else:
    result = "Not Found"

print(result)

false

200

what is dictionary denoted by 

{}

300

what is mutable

change

300

set_a = {1, 2, 3, 4}
set_b = {3, 4, 5, 6}
print(set_a.intersection(set_b))

{3,4}

300
reverse this

[1,2,3,4,5]

[5,4,3,2,1]

use ::-1 to reverse

300

def square_list(nums):
    for i in range(len(nums)):
        nums[i] = nums[i] ** 2
    return nums

print(square_list([2, 4, 6]))

[4,16,36]

300

def update_list(x, y):
    y.append(x)
    return y

data = []
print(update_list(5, data))
print(update_list(10, data))

[5]

[5,10]

400

text1 = "Hello"
text2 = "world"
result = text1 + "my " + text2.upper() + "!"
print(result)

Hellomy WORLD!
400

what does difference find 

the variables that dont repeat

400
what does .upper do

change to upper case

400

will this pop an error

students = {'John': 85, 'Emma': 92}
students['Liam'] = 78

no
400

is this fun :)

yes :3

500

what is immutable

unchange

500

create a dictionary of 4 keys and values and try negative indexing

does it work?

why or why not

it doesnt and honestly google

500

def square_list(nums):
    for i in range(len(nums)):
        nums[i] = nums[i] ** 2
    return nums

print(square_list([2, 4, 6]))

true/false it will contain 3 keys

true

500

my_list = [1, 2, 3]
my_list.append(4, 5)
print(my_list)

what does this output.

error

500

from this 

I love SI sessions with Lee I think SI is a fun time!

convert to lower case

split the sentence by word

count how many times each word apears

store in dictionariy where key is word and value is repeat

I will check