Used to display output on the console
What is the purpose of the print() function?
This type of data in Python is defined by enclosing characters in single quotes, double quotes, or triple quotes.
What is a string?
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?
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?
These two values in Python help you represent true or false conditions, often used in making decisions in your code.
What are Boolean values?
There are currently a total of 68.
How many built-in functions does Python 3.8 have?
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?
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 (=)?
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?
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?
Used to create a comment in Python.
What is a #?
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?
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?
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?
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?
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?
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?
In the statement var = "007", this operator allows you to combine a string with a variable for output.
What is the plus sign (+)?
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?
This Python function is used to convert a string into an integer or a floating-point number.
What is the int() or float() function?
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()?
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?
In this example, x+=5,
'+=' what type of operator that adds 5 to x.
What are compound assignment operators?
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?
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?