Book1 Flashcards

1
Q

What are the two types of cells in a Jupyter Notebook?

A

There are two types of cells in a Jupyter Notebook: code and text.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you execute code in a Jupyter Notebook cell?

A

To execute code in a Jupyter Notebook cell, press Shift + Enter.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the purpose of comments in Python code?

A

Comments in Python code are used to explain the code and are not run as part of the program.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the syntax for creating a list in Python?

A

The syntax for creating a list in Python is using square brackets [] with each item separated by a comma.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the purpose of the len() function in Python?

A

The len() function in Python is used to get the count of elements in a list or other iterable objects.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the min() and max() functions used for in Python?

A

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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you access the third item in a list in Python?

A

To access the third item in a list in Python, use the index [2], as indexing starts at 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the purpose of the range() function in Python?

A

The range() function in Python returns an immutable sequence of numbers between the given start integer to the stop integer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the syntax for a for loop in Python?

A

The syntax for a for loop in Python is: for iterator_var in sequence: followed by the body of the loop.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a function in Python?

A

A function in Python is a block of instructions that performs a specific task.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you define a function in Python?

A

A function in Python is defined using the def keyword, followed by the function name and parameters in parentheses.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a lambda function in Python?

A

A lambda function in Python is an anonymous function defined using the lambda keyword, typically used for small tasks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are *args and **kwargs used for in Python functions?

A

*args and **kwargs in Python functions are used for passing a variable number of arguments to a function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly