#1
Which of the following is NOT a valid variable name in Python?
#2What is the output of the following code snippet?
What is the output of the following code snippet?
```python
print(3 * 2 ** 3)
#3What is the output of the following code snippet?
What is the output of the following code snippet?
```python
print(5 == 5.0)
#4
Which keyword is used to define a function in Python?
#5
In Python, what does the 'pass' statement do?
#6
Which of the following is a mutable data type in Python?
#7
What is the purpose of a 'lambda' function in Python?
#8
In Python, what does the 'range()' function return?
#9
Which of the following is NOT a valid method of the 'list' class in Python?
#10What will be the output of the following code snippet?
What will be the output of the following code snippet?
```python
x = 'hello'
print(x[::-1])
#11What will be the output of the following code snippet?
What will be the output of the following code snippet?
```python
x = [1, 2, 3]
print(x[3:])
#12What will be the output of the following code snippet?
What will be the output of the following code snippet?
```python
x = [1, 2, 3]
print(x[-2:])
#13