Course 7 Module 2 Glossary

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/14

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:39 PM on 7/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards

Argument (Python)

The data brought into a function when it is called

2
New cards

Built-in function

A function that exists within Python and can be called directly

3
New cards

Comment

A note programmers make about the intention behind their code

4
New cards

Function

A section of code that can be reused in a program

5
New cards

Global variable

A variable that is available through the entire program

6
New cards

Indentation

Space added at the beginning of a line of code

7
New cards

Library

A collection of modules that provide code users can access in their programs

8
New cards

Local variable

A variable assigned within a function

9
New cards

Module

A Python file that contains additional functions, variables, classes, and any kind of runnable code

10
New cards

Parameter (Python)

An object that is included in a function definition for use in that function

11
New cards

PEP 8 style guide

A resource that provides stylistic guidelines for programmers working in Python

12
New cards

Python Standard Library

An extensive collection of Python code that often comes packaged with Python

13
New cards

Return statement

A Python statement that executes inside a function and sends information back to the function call

14
New cards

Style guide

A manual that informs the writing, formatting, and design of documents

15
New cards

User-defined function

A function that programmers design for their specific needs