Frameworks 004 Flashcards

1
Q

What are tuples

A

same as lists but are unchangeable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are lists

A

The values in a list can be different types like strings and integers and you can access any of these using indexing + changeable(values start counting from 0 - whatever)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are sets

A

same as lists but cannot contain duplicates

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are Dictionaries

A

dict_example = {
“Sessions”: [“Programming Concepts”,
“Frameworks”,
“NICS”,
“Design & Development”
],
“Tutor”: “Owen”

you can save multiple values for one thing and its mutable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are mutables

A

fancy word for changeable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly