Python Basics 🐍👩‍💻

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

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Python Interpreter

→ A program that translates Python code into instructions the computer understands and runs it line by line ( top to bottom ).

2
New cards

String

→ A sequence of characters stored inside quotes.

Example: "Sam"

3
New cards

Expression

→ A piece of code that produces a value.

Example: "*" * 10

4
New cards

Variable

→ A container used to temporarily store data in memory.

Example: price = 10

5
New cards

Identifier

→ The name of a variable.

Example: price, full_name

6
New cards

Integer ( int )

A whole number without a decimal point.

Example: 5, -3

7
New cards

Float

→ A number that contains a decimal point.

Example: 3.14, 2.0

8
New cards

Boolean (bool)

→ A value that is either True or False.

9
New cards

Case Sensitivity

Python treats uppercase and lowercase letters as different.

Example: name ≠ Name

10
New cards