Data Types - General Flashcards

1
Q

Explain what an iterable is and list all the different types of iterables

A

It’s any object that you can loop over.

String
List
Tuple
Set
Dictionary
range(n)

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

Which of the below iterables can be sliced?

String
Set
List
Tuple
Dictionary
range(n)

A

Can be sliced,

String
List
Tuple
range(n)

Can’t be sliced,

Set
Dictionary

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

What data types can the for loop be used on

A

All iterables

E.g., for item in iterable:

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

What iterables can the “in” keyword be used on and why

A

All iterables - because if an object is iterable, Python can loop through it to check for membership — which is what “in” does

E.g., if x in iterable:

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

What iterables can sum() be used on

A

Any iterable provided all items are numeric…

… thus String is the only iterable that can never utilise sum()

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

What iterables can max() & min() be used on

A

All iterables

Though Dictionary operates on the keys

Items MUST be “comparable”

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

What iterables can len() be used on

A

All iterables

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

What iterables can sorted() be used on

A

All iterables

Items MUST be “comparable”

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

What iterables can join() be used on

A

All iterables - provided all items inside the iterable are strings

Using it on a dictionary will join the keys

Join() takes a string seperator, and joins strings from an iterable - seperating thoes strings by that string seperator

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

What does it mean if an iterables is indexed

A

Each item in a collection is given a numeric position (an index number)

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

What does it mean if an iterable is ordered

A

Items stay in the order you added them

If an iterable is unordered, Python may reorder the items immediately upon creation or when operations are performed

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

Which of the following iterables are ordered

Set
Tuple

A

Tuple

a Set is not ordered

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

Which of the following iterables are indexed

Tuple
Set

A

Tuple

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

Which of the following iterables allow duplicates

Set
Tuple

A

Tuple

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

What is the main difference between a List and a Tuple

A

A List is mutable.
A Tuple is immutable.

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

What does it mean if an iterable is mutable or immutable

A

Immutable means you cannot modify the object “in place”. To “change” it, you must create a modified copy and reassign it to the variable.

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

What iterables are immutable

A

String
Tuple
range()

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

What iterables are mutable

A

List
Dictionary
Set

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

What is the MAIN difference between a List and a String

A

A list is a collection of any type of items.
A string is a collection of characters only.

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

Out of the below, which are not ordered,

String
List
Tuple
Set
Dictionary
range(n)

A

Set is the only one

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

Out of the below, which don’t allow duplicates,

Tuple
Set

A

Set

A Dictionary allows duplicate values, but not duplicate k

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

Out of the below, which are not Indexable,

String
List
Tuple
Set
Dictionary
range(n)

A

Set

Though a Dictionary is Indexable via Keys rather then Index numbers

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

How can you find the data type of an object

A

print(type(object))

24
Q

x = 10

delete variable x from memory

25
Q

Can methods like .append(), .remove(), .pop() be used on both mutable & immutanbe iterables

A

No, only on mutable iterables.

With a String, for example, these won’t work even if you attempt to store the result in a variable.

Because these methods try to modify the iterable “in place”

26
Q

Can assignment operators like += & *= be used on both mutable & immutanbe iterables

A

Yes, but…

On mutable iterables → they change the object in place

On immutable iterables → they create and return a new object

27
Q

iterable[2] = “d”

Does the above item assignment work on all iterables

A

No, it only works on iterables that are mutable and support indexing.

Hence, it only works on List & Dictionary (though with Dictionary, “2” is the key and “d” is the value)

28
Q

del iterable[2]

Does the above deletion work on all iterables

A

No, it only works on iterables that are both mutable and indexable.

Hence, it only works on List & Dictionary (though with Dictionary, it deletes the key)

29
Q

iterable.sort()

Does the above work on all iterables

A

No, List is the only object with the attribute ‘sort’

30
Q

sorted(iterable)

Does the above work on all iterables

A

Yes, because it always returns a new object

31
Q

What’s the difference between sort() & sorted()

A

sort() is really .sort() & it’s a method of the “List” iterable and can only be used on Lists - it modifies the List “in place”.

sorted() always returns a new object, hence can be used on any iterable.

32
Q

len(iterable)

Does the above work on all iterables

33
Q

What is an easier way to do the below,

num_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]

A

num_list = list(range(1, 21))

34
Q

Give 2 effective methods of reversing the order of the List “lst”

A

lst[ : :-1]

list(reversed(lst))

reversed() creates a “Reversed Iterator” - it does not return a list, hence is must be converted to, in this case, a List.

35
Q

What is the difference between the below,

lst[ : :-1]

reversed(lst)

A

lst[ : :-1] returns a new reversed List

reversed(lst) returns a “Reversed Iterator” - it does not create a new List unless you wrap it with list()

36
Q

what is the main advantages of using,

list(reversed(lst))

instead of ,

lst[ : :-1]

A

list(reversed(lst)) is more memory efficient, so usefull for large lists.

37
Q

What is the difference between an “Iterator” & an “Iterable”

(In layman’s terms)

A

Iterables are collections of data - like String, List, Set, Tuple, Dictionary, range()

An Iterator is like instructions for how to cycle through those items

In a vending machine, the snacks are the Iterables and the retreival mechanism is the Iterator

38
Q

Which is better & why

result = “”
for char in “String”:
result += char * 2
print(result)

vs

result = []
for char in “String”:
result.append(char * 2)
print(‘‘.join(result))

A

Using a List with .join() is quicker & more memory-efficient than a String with +=

Because Strings are immutable, += creates a new String for each iteration - which can become very inefficient with long Strings

39
Q

for i in iterable:
print(iterable[i])

What does the above print

A

TypeError

This treats “i” like it’s an index, but it actually refers to an item in the collection “iterable”.

If you want to print the Item, it should be typed as below,

for i in iterable:
print(i)

40
Q

for i in iterable:
print(i)

For which iterables can you use the above

A

All Iterables

41
Q

for i in iterable:
print(i)

The above returns the Items in the iterable.

How should the above be modified to return the Index of the items.

A

for i in range(len(iterable)):
print(i)

42
Q

numbers = [0, 3, 4, 5]
sqa_num = []
for num in numbers:
sqa_num += num ** 2

What will the above return

A

TypeError

In this case “+=” is attempting to “extend” the List with another Iterable

You should use .append() instead to add a single number

43
Q

a = 1
b = 2
c = 3

Modify the above assignments to be in a single line

A

a, b, c = 1, 2, 3

44
Q

There a 2 variables a & b. Swap their assigned values without using a temporary variable

A

a, b = b, a

45
Q

There are 3 vaiables, a, b & c

In a single line, assign b to a, c to b & a to c

A

a, b, c = b, c, a

46
Q

lst = [1, 2, 3]

In a single line, re-arrange “lst” to the below

[3, 1, 2]

A

lst[0], lst[1], lst[2] = lst[1], lst[2], lst[3]

47
Q

a, b = divmod(10, 3)

What does the above do

A

It divides 10 by 3 and assigns:
1) “a” the quotient → 10 // 3 = 3
2) “b” the remainder → 10 % 3 = 1

48
Q

for i in range(len(“abc”)):
print(i)

What’s a cleaner and more Pythonic way to write the above

A

for i, item in enumerate(“abc”):
print(i)

Enumerate() actually retrieves both the index number and the item value, hence print(i, item) will print both

49
Q

An easy way to check if all the characters in a string are digits

A

str.isdigit()

Returns True or False

50
Q

“123”.isdigit()

What deos the above do

A

Checks if ALL characters in a String are digits

Returns True or False

51
Q

An easy way to compare 2 Lists for similarity, returning True or False for each item

A

for a, b in zip(list1, list2):
if a != b:
return False

52
Q

What does any() do

A

any() returns True if any element is truthy

53
Q

for word in words:
if “x” in word:
return True
return False

Write the above using the any() function

A

return any(“x” in word for word in words)

54
Q

What does all() do

A

all() returns True if all elements are truthy

55
Q

for c in password:
if c.isdigit() == False:
return False
return True

Write the above using the all() function

A

return all(c.isdigit() for c in password)

56
Q

Using the any() function, check if any number is even in a List of numbers

A

any(num % 2 == 0 for num in nums)

57
Q

Using the all() function, check if all numbers in a List of numbers are between 1 and 10

A

all(1 <= n <= 10 for n in nums)