Module 3 Flashcards

1
Q

These represent plain text.

A

String

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

This function is used to get the number of characters in a string

A

len()

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

This indicates the location of the individual character in a string.

A

Index

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

Type in the name of the string and then its index enclosed in ___________ to access a character given its index.

A

Square Brackets [ ]

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

This accesses a string a part of the string through index enclosed in brackets.

A

Slicing

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

True or False.
The range specified in the slicing excludes the upper bound.

A

True

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

What is the syntax for slicing in Python

A

[start : end : step]

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

This is indicated by the symbol + performed on strings.

A

String Concatenation

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

What function is used to convert an integer value to a string.

A

str()

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

To have an idea of how a certain string method works, use the command.

A

help()
Ex. help(“Hello”.capitalize)

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

What function is used to determine the data type.

A

type()

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

_______ is a sequence of values.

A

List

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

The values in a list are called __________.

A

Elements or Items

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

A list is defined by enclosing its items in ___

A

Square Brackets [ ]

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

True or False.
A list can hold only one type of data at a time.

A

False
(A list can hold any type of data)

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

This is used to check whether an item or element exists in a list.

A

in
Ex. “plasma” in states

14
Q

This is used to add an item at the end of a list.

A

append()
Ex. nameList.append(10)

15
Q

This is used to insert an item at a given index.

A

.insert()
Ex. nameList.insert(1, “Oshawott”)

16
Q

This is used to remove the first occurrence of a string.

A

.remove()
Ex. numList.remove(4)

17
Q

This is used to convert a string into a list of characters.

A

list()
Ex. list(“hello”)

18
Q

This is used to join the string of elements in a list into one string.

A

.join()
Ex. “-“.join(fruits)

19
Q

This is used to split the characters of a string using a certain character.

A

.split
Ex. animalsList.split(“_”)

20
Q

______ is an immutable sequence of values.

21
Q

A tuple is defined by enclosing its elements in a pair of _____.

A

Parentheses ( )

22
Q

This means that items can be changed in-place.

23
Q

A ________ is a general version of a list.

A

Dictionary

24
Q

Dictionaries are indexed by _____.

25
Q

A dictionary comprises of _____ pairs, and each key maps to a comma-separated key:value pairs.

26
Q

This method is used to get all the keys in a dictionary.

A

keys()
Ex. sample_dict.keys()

27
Q

This method is used to get all the values in a dictionary.

A

values()
Ex. sample_dict.values()

28
Q

This method is used to get all the key-value pairs in a dictionary.

A

items()
Ex. sample_dict.items()