Python Programming Basics

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

1/14

flashcard set

Earn XP

Description and Tags

A set of vocabulary flashcards covering essential concepts and terms related to Python programming.

Last updated 6:40 PM on 4/27/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards

Python

A popular programming language created by Guido van Rossum in 1991 used for web development, software development, mathematics, and system scripting.

2
New cards

Token

The smallest individual unit in a python program.

3
New cards

Character set

A set of valid characters acceptable by a programming language in scripting, including alphabets, digits, special symbols, white spaces, and all ASCII and UNICODE characters.

4
New cards

Keyword

A reserved word in programming that cannot be used as an identifier.

5
New cards

Identifier

Names given to variables and functions that must start with a letter or underscore and cannot contain special characters or whitespaces.

6
New cards

Dynamically Typed Language

A programming language where the type is determined at runtime rather than in advance.

7
New cards

Cross Platform Language

A programming language that can run on various operating systems like Windows, Mac, and Linux.

8
New cards

Interpreter Language

A type of programming language where code can be executed line-by-line as it is written.

9
New cards

Standard Library

A collection of modules and packages that come with Python to facilitate programming tasks.

10
New cards

Arithmetic Operators

Operators that perform basic mathematical operations such as addition, subtraction, multiplication, and division.

11
New cards

Relational Operators

Operators used to compare two values and determine the relationship between them (e.g., >, <, ==).

12
New cards

Logical Operators

Operators that combine boolean values (e.g., and, or, not).

13
New cards

Membership Operators

Operators that test for membership in sequences such as lists or strings (e.g., in, not in).

14
New cards

Identity Operators

Operators that check if two variables point to the same object (e.g., is, is not).

15
New cards

Augmented Assignment Operators

Operators that combine an arithmetic operation with assignment (e.g., +=, -=).