Built-in Functions
String Literals
Variables
Input and Output
Boolean and Data Types
100

Used to display output on the console

What is the purpose of the print() function?

100

This type of data in Python is defined by enclosing characters in single quotes, double quotes, or triple quotes.

What is a string?

100

This is a named spot in your program where you can store information, like numbers or text, so you can use or change it later.

What is a variable?

100

This built-in function in Python lets you ask users for information while the program is running, and it takes their answer as a string so you can use it later.

What is the input() function?

100

These two values in Python help you represent true or false conditions, often used in making decisions in your code.

What are Boolean values?

200

There are currently a total of 68.

How many built-in functions does Python 3.8 have?

200

This special character in a string literal is used to insert a newline or tab, allowing for formatted output when printed.

What is an escape character?

200

To set aside a space in your program for storing information, you use this symbol followed by the variable name and the value you want to assign, allowing you to use that information later on.

What is the assignment operator (=)?

200

This programming process involves converting a value from one data type to another, such as changing a string into an integer or a float.

What is type casting?

200

This type of number in Python represents whole values without any decimal points, including both positive and negative numbers, as well as zero.

What is an integer?

300

Used to create a comment in Python.  

What is a #?

300

To include this punctuation mark within a string in Python without causing a syntax error, you can use a backslash before it or enclose the string in double quotes.

What is an apostrophe?

300

To create a valid identifier name in Python, this character must be at the beginning, followed by letters, underscores, or digits, while ensuring that it is not a keyword.

What is an underscore (_) or a letter?

300

This method in Python allows you to combine two or more strings into a single string, often using the plus sign (+) operator.

What is concatenation?

300

This type of number in Python represents values that can have decimal points, allowing for more precise calculations compared to integers.

What is a floating-point number?

400

This type of function is provided by Python and can be used without needing to define it, while this other type is created by the programmer to perform a specific task.

What is the difference between a built-in function and a user-defined function?

400

This type of character in strings is used to perform specific functions, such as creating new lines or inserting tabs, and is often preceded by a backslash in programming.

What is a special character?

400

In the statement var = "007", this operator allows you to combine a string with a variable for output.

What is the plus sign (+)?

400

When the input() function is called, this occurs, stopping the program until the user types their answer and presses the Enter key.

What is the program pauses, waiting for user input?

400

This Python function is used to convert a string into an integer or a floating-point number.

What is the int() or float() function?

500

This parameter in the print() function allows you to specify what to print at the end of the output instead of the default newline character.

What is the end= parameter in print()?

500

In Python, this term refers to a string that contains no characters at all, still classified as a string type.

What is an empty string?

500

In this example, x+=5

'+=' what type of operator that adds 5 to x.

What are compound assignment operators?

500

This is necessary when you want to store the information provided by a user in Python, as using the input() function without this will result in losing the input.

What is a variable?

500

This numbering system uses only two digits, 0 and 1, to represent all values, forming the basis of computer processing and digital data.

What is the binary numbering system?