Introduction to Python - Lesson 5 Vocabulary

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/10

flashcard set

Earn XP

Description and Tags

Flashcards covering key vocabulary terms from the Python programming lesson, focusing on loops, validation, and randomness.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

Iteration

The computing term for repeating something again and again.

2
New cards

While-loop

A Python construct that keeps repeating a block of code while a certain condition is true.

3
New cards

Validation

Checking that inputted data is in the correct format, typically performed by a computer program.

4
New cards

Presence Checking

A type of validation that ensures something has been entered.

5
New cards

Existence Checking

A type of validation that ensures that data exists on a database.

6
New cards

Length Checking

A type of validation that ensures data is not too short or too long.

7
New cards

Format Checking

A type of validation that ensures data is in the correct form.

8
New cards

Verification

Showing a user what they have already inputted so they can check its correctness; usually performed by a person.

9
New cards

Pseudo-random Numbers (PRNs)

Numbers generated by algorithms that appear random but are produced using mathematical formulas or pre-calculated tables.

10
New cards

Random.seed()

Helps to make the numbers ‘more random’.

11
New cards

Random.randrange()

Picks a random number between two values.