Python Basics Vocabulary

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

1/14

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering Python programming basics.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

15 Terms

1
New cards

Software

Programs and related data that run on a computer; the term software is often used to refer to a program.

2
New cards

Program

A collection of statements that performs a specific task when run by a computer.

3
New cards

Script

A Python file containing code, typically saved with a .py extension and edited in an IDE.

4
New cards

Python

A high-level programming language used in this course to learn programming concepts.

5
New cards

string literal

Text written in code enclosed in quotes that represents a string value.

6
New cards

concatenation

Combining multiple elements into one output; print() can separate items with spaces.

7
New cards

variable

A named reference to a value that can be used later.

8
New cards

assignment

Using '=' to assign the value on the right to the variable on the left.

9
New cards

integer

Whole numbers; Python integers are variable-precision.

10
New cards

float

Floating-point numbers; real numbers with decimals.

11
New cards

boolean

Boolean type with values True and False (case-sensitive).

12
New cards

str

String type used to store text.

13
New cards

string literal vs string variable

A string literal is text written in code; a string variable holds a string value.

14
New cards

program input

Data provided to a program for processing (e.g., user input).

15
New cards

program output

Data produced by a program and presented to a device.