What is Python?
A high-level, easy-to-read programming language
What is a variable?
A name that stores a value
What is a data type?
A classification of data, like int or str
What is an integer?
A whole number without decimals
What is a string?
Text enclosed in quotes
What does input() do?
Takes data from the user
What does print() do?
Outputs text or data
What is assignment?
Giving a value to a variable
What is an if statement?
A structure used to make decisions
What is else used for?
Running code if the ‘if’ condition is false
What is elif?
Additional condition after an if statement
What is a loop?
Code that repeats multiple times
What is a while loop?
Repeats while a condition is true
What is a for loop?
Repeats a set number of times
What is indentation?
Spaces that show code blocks in Python
What is a syntax error?
Mistake in code rules that stops the program
What is debugging?
Identifying and fixing errors
What is a function?
A reusable block of code
What does return do in a function?
Sends a value back to the caller
What is a comment in Python?
Notes in code using #