Python Basic Flashcards

1
Q

What is the output of print(type(5)) in Python?

A

<class ‘int’>

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

True or False: A list in Python is immutable.

A

False

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

Fill in the blank: The keyword used to define a function in Python is ____.

A

def

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

What does ‘PEP’ stand for in Python?

A

Python Enhancement Proposal

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

What is the purpose of the ‘self’ keyword in Python classes?

A

It refers to the instance of the class.

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

Which data structure is used to store key-value pairs in Python?

A

Dictionary

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

What will be the result of the expression (3 * 1 ** 3)?

A

3

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

True or False: Python uses indentation to define code blocks.

A

True

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

What is the method to add an element to a list in Python?

A

append()

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

Which operator is used for string concatenation in Python?

A

+

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

What is a lambda function?

A

An anonymous function defined with the lambda keyword.

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

What will the following code output: print(‘Hello’ + ‘World’)?

A

HelloWorld

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

What is the difference between ‘==’ and ‘is’ in Python?

A

’==’ checks for value equality, while ‘is’ checks for identity.

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

Fill in the blank: In Python, a module is a ____ file containing Python code.

A

Python

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

What is the purpose of the ‘try’ and ‘except’ blocks in Python?

A

To handle exceptions and errors.

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

True or False: Python supports multiple inheritance.

17
Q

What function is used to read input from the user in Python?

18
Q

What is the default return value of a function that does not explicitly return a value?

19
Q

Which built-in function can be used to get the length of a list?

20
Q

What is list comprehension in Python?

A

A concise way to create lists using a single line of code.

21
Q

What keyword is used to create a class in Python?

22
Q

True or False: Python supports both procedural and object-oriented programming.

23
Q

What does the ‘pass’ statement do in Python?

A

It does nothing; it’s a placeholder.

24
Q

Which function would you use to convert a string to an integer?

25
Q

What is a decorator in Python?

A

A function that modifies the behavior of another function.

26
Q

Fill in the blank: The Python package manager is called ____.

27
Q

What is the purpose of the ‘with’ statement in Python?

A

To wrap the execution of a block with methods defined by a context manager.