Book1 Flashcards
What are the two types of cells in a Jupyter Notebook?
There are two types of cells in a Jupyter Notebook: code and text.
How do you execute code in a Jupyter Notebook cell?
To execute code in a Jupyter Notebook cell, press Shift + Enter.
What is the purpose of comments in Python code?
Comments in Python code are used to explain the code and are not run as part of the program.
What is the syntax for creating a list in Python?
The syntax for creating a list in Python is using square brackets [] with each item separated by a comma.
What is the purpose of the len() function in Python?
The len() function in Python is used to get the count of elements in a list or other iterable objects.
What are the min() and max() functions used for in Python?
The min() and max() functions in Python are used to calculate the minimum and maximum values among items in a list or other iterable objects.
How do you access the third item in a list in Python?
To access the third item in a list in Python, use the index [2], as indexing starts at 0.
What is the purpose of the range() function in Python?
The range() function in Python returns an immutable sequence of numbers between the given start integer to the stop integer.
What is the syntax for a for loop in Python?
The syntax for a for loop in Python is: for iterator_var in sequence: followed by the body of the loop.
What is a function in Python?
A function in Python is a block of instructions that performs a specific task.
How do you define a function in Python?
A function in Python is defined using the def keyword, followed by the function name and parameters in parentheses.
What is a lambda function in Python?
A lambda function in Python is an anonymous function defined using the lambda keyword, typically used for small tasks.
What are *args and **kwargs used for in Python functions?
*args and **kwargs in Python functions are used for passing a variable number of arguments to a function.