Python Data Types and Data Structures Vocabulary

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering basic Python data types, functions, lists, dictionaries, and tuples.

Last updated 1:47 AM on 8/27/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

Integer (int)

A whole number, such as 20.

2
New cards

Float

A number with a decimal, such as 20.5.

3
New cards

String (str)

Text/characters surrounded by quotation marks, such as "BANA6620".

4
New cards

Boolean (bool)

A data type that has a value of True or False.

5
New cards

List

A collection of elements that can contain different data types, including words, integers, floats, and Booleans.

6
New cards

type() function

A Python function used to determine the data type of an object.

7
New cards

Zero indexed

A positioning system where the first element in a list has index 0, the second has index 1, and so on.

8
New cards

len() function

A function that tells you how many elements or items are in a list.

9
New cards

append() function

A list function used to add a new element to the end of a list.

10
New cards

del statement

A command used to delete an element from a list using its index, such as del x[2].

11
New cards

Dictionary

A Python data structure that maps a key to a value, similar to how a word is mapped to its meaning.

12
New cards

Structured dictionary

A dictionary created using the dict() function, such as instructorDict = dict().

13
New cards

Tuple

A data type similar to a list that is created using parentheses ( ) and is immutable.

14
New cards

Immutable

A characteristic meaning you cannot change anything in the object after creation.