Python: Basic Syntax Flashcards

1
Q

What is the correct syntax to print “Hello World!” in Python?

A. echo “Hello World!”
B. printf(“Hello World!”)
C. print(“Hello World!”)
D. System.out.println(“Hello World!”)

A

B. printf(“Hello World!”)

Explanation: The print() function is used to output text in Python. The correct syntax to print “Hello World!” is print(“Hello World!”).

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

What will print(a[1]) output if a = “Hello, World!”?

A. H
B. e
C. l
D. o

A

B. e

Explanation: In Python, string indexing starts at 0. Therefore, a[1] refers to the second character in the string “Hello, World!”, which is “e”.

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

What does print(len(a)) output if a = “Hello, World!”?

A. 11
B. 12
C. 13
D. 14

A

C. 13

Explanation: The len() function returns the length of a string. The string “Hello, World!” has 13 characters, including spaces and punctuation.

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

What does print(“free” in txt) output if txt = “The best things in life are free!”?

A. True
B. False
C. None
D. Error

A

A. True

Explanation: The in operator checks if a substring exists within a string. Since “free” is present in the string txt, the output is True.

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

What will print(b[2:5]) output if b = “Hello, World!”?

A. Hel
B. llo
C. lo,
D. o,

A

B. llo

Explanation: String slicing b[2:5] extracts characters from index 2 to 4 (inclusive of 2, exclusive of 5). Therefore, it outputs “llo”.

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

What does print(a.upper()) output if a = “Hello, World!”?

A. hello, world!
B. HELLO, WORLD!
C. Hello, World!
D. hELLO, wORLD!

A

B. HELLO, WORLD!

Explanation: The upper() method converts all characters in a string to uppercase. Therefore, a.upper() outputs “HELLO, WORLD!”.

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

What does print(a.replace(“H”, “J”)) output if a = “Hello, World!”?

A. Jello, World!
B. Hello, World!
C. Jello, world!
D. Jello, world!

A

A. Jello, World!

Explanation: The replace() method replaces all occurrences of the specified substring with another substring. Therefore, a.replace(“H”, “J”) outputs “Jello, World!”.

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

What does print(a.split(“,”)) output if a = “Hello, World!”?

A. [‘Hello World!’]
B. [‘Hello’, ‘ World!’]
C. [‘Hello’, ‘World!’]
D. [‘Hello’, ‘World’]

A

B. [‘Hello’, ‘ World!’]

Explanation: The split() method splits a string into a list using the specified delimiter. Therefore, a.split(“,”) outputs [‘Hello’, ‘ World!’].

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

What does print(a + s + d) output if a = “Papasa”, s = “ba”, and d = “ako?”?

A. Papasa ba ako?
B. Papasabaako?
C. Papasa baako?
D. Papasa ba ako

A

B. Papasabaako?

Explanation: The + operator concatenates strings without adding spaces. Therefore, a + s + d outputs “Papasabaako?”.

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

What does print(a + s + d) output if a = 1, s = 2, and d = 3?

A. 123
B. 6
C. 5
D. Error

A

B. 6

Explanation: The + operator adds numeric values. Therefore, a + s + d outputs 6.

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

What does print(a + s) output if a = “Okay na to” and s = 5?

A. Okay na to5
B. Okay na to 5
C. Error
D. TypeError

A

D. TypeError

Explanation: Concatenating a string with an integer using + results in a TypeError. Therefore, print(a + s) outputs a TypeError.

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

What does print(x) output if x = 3?

A. 3
B. x
C. Error
D. None

A

A. 3

Explanation: The variable x is assigned the value 3. Therefore, print(x) outputs 3.

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

What is the data type of c if c = float(5)?

A. int
B. float
C. str
D. bool

A

B. float

Explanation: The float() function converts the integer 5 to a floating-point number. Therefore, c is of type float.

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

Which of the following is a valid variable name in Python?

A. 1variable
B. variable_1
C. variable-1
D. variable 1

A

Which of the following is a valid variable name in Python?

Explanation: Variable names must start with a letter or underscore and can only contain alphanumeric characters and underscores. Therefore, variable_1 is valid.

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

What does print(“Python is “ + x) output if x = “awesome” and global x is set to “fantastic” in a function?

A. Python is awesome
B. Python is fantastic
C. Python is None
D. Error

A

B. Python is fantastic

Explanation: The global keyword allows the variable x to be modified globally within the function. Therefore, print(“Python is “ + x) outputs “Python is fantastic”.

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

What is the data type of z if z = 4j?

A. int
B. float
C. complex
D. str

A

C. complex

Explanation: The value 4j represents a complex number in Python. Therefore, z is of type complex.

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

What does print(random.randrange(1, 10)) output?

A. A fixed number between 1 and 10
B. A random number between 1 and 9
C. A random number between 1 and 10
D. Error

A

B. A random number between 1 and 9

Explanation: The randrange() function from the random module generates a random number between the specified range, inclusive of the start and exclusive of the end. Therefore, it outputs a random number between 1 and 9.

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

What does print(10 > 9) output?

A. True
B. False
C. None
D. Error

A

A. True

Explanation: The comparison operator > checks if 10 is greater than 9. Since this condition is true, the output is True.

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

What does print(not(x < 5 and x < 10)) output if x = 3?

A. False
B. True
C. None
D. Error

A

A. False

Explanation: The not operator reverses the result of the expression. Since x < 5 and x < 10 is True, not(True) is False.

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

What does x & y do in Python?

A. Sets each bit to 1 if both bits are 1
B. Sets each bit to 0 if both bits are 0
C. Sets each bit to 1 if one of two bits is 1
D. Inverts all the bits

A

A. Sets each bit to 1 if both bits are 1

Explanation: The bitwise AND operator & sets each bit to 1 if both corresponding bits are 1. Otherwise, it sets the bit to 0.

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

What does x | y do in Python?

A. Sets each bit to 1 if both bits are 1
B. Sets each bit to 1 if one of two bits is 1
C. Sets each bit to 0 if both bits are 0
D. Inverts all the bits

A

B. Sets each bit to 1 if one of two bits is 1

Explanation: The bitwise OR operator | sets each bit to 1 if one of the two corresponding bits is 1. If both bits are 0, it sets the bit to 0.

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

What does x ^ y do in Python?

A. Sets each bit to 1 if only one of two bits is 1
B. Sets each bit to 1 if both bits are 1
C. Sets each bit to 0 if both bits are 0
D. Inverts all the bits

A

A. Sets each bit to 1 if only one of two bits is 1

Explanation: The bitwise XOR operator ^ sets each bit to 1 if only one of the two corresponding bits is 1. If both bits are the same, it sets the bit to 0.

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

What does ~x do in Python?

A. Sets each bit to 1 if both bits are 1
B. Sets each bit to 1 if one of two bits is 1
C. Inverts all the bits
D. Sets each bit to 0 if both bits are 0

A

C. Inverts all the bits

Explanation: The bitwise NOT operator ~ inverts all the bits of the operand, changing 1s to 0s and 0s to 1s.

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

What does x &laquo_space;2 do in Python?

A. Shifts bits to the right
B. Shifts bits to the left by pushing zeros in from the right
C. Inverts all the bits
D. Sets each bit to 1 if both bits are 1

A

B. Shifts bits to the left by pushing zeros in from the right

Explanation: The bitwise left shift operator &laquo_space;shifts bits to the left by pushing zeros in from the right, letting the leftmost bits fall off.

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

What does x&raquo_space; 2 do in Python?

A. Shifts bits to the right by pushing copies of the leftmost bit in from the left
B. Shifts bits to the left by pushing zeros in from the right
C. Inverts all the bits
D. Sets each bit to 1 if both bits are 1

A

A. Shifts bits to the right by pushing copies of the leftmost bit in from the left

Explanation: The bitwise right shift operator&raquo_space; shifts bits to the right by pushing copies of the leftmost bit in from the left, letting the rightmost bits fall off.

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

What does x and y do in Python?

A. Returns True if both statements are true
B. Returns True if one of the statements is true
C. Returns False if both statements are true
D. Returns False if one of the statements is true

A

A. Returns True if both statements are true

Explanation: The logical AND operator and returns True if both statements are true. If either statement is false, it returns False.

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

What does x or y do in Python?

A. Returns True if both statements are true
B. Returns True if one of the statements is true
C. Returns False if both statements are true
D. Returns False if one of the statements is true

A

B. Returns True if one of the statements is true

Explanation: The logical OR operator or returns True if at least one of the statements is true. If both statements are false, it returns False.

28
Q

What does not(x < 5 and x < 10) do in Python?

A. Reverses the result, returns False if the result is true
B. Returns True if both statements are true
C. Returns True if one of the statements is true
D. Returns False if one of the statements is true

A

A. Reverses the result, returns False if the result is true

Explanation: The logical NOT operator not reverses the result of the expression. If the expression is true, it returns False, and vice versa.

29
Q

What does x in y do in Python?

A. Returns True if a sequence with the specified value is present in the object
B. Returns True if both variables are the same object
C. Returns True if both variables are not the same object
D. Returns True if a sequence with the specified value is not present in the object

A

A. Returns True if a sequence with the specified value is present in the object

Explanation: The membership operator in returns True if a sequence with the specified value is present in the object.

30
Q

What does x not in y do in Python?

A. Returns True if a sequence with the specified value is present in the object
B. Returns True if a sequence with the specified value is not present in the object
C. Returns True if both variables are the same object
D. Returns True if both variables are not the same object

A

B. Returns True if a sequence with the specified value is not present in the object

Explanation: The membership operator not in returns True if a sequence with the specified value is not present in the object.

31
Q

What does x is y do in Python?

A. Returns True if both variables are the same object
B. Returns True if both variables are not the same object
C. Returns True if a sequence with the specified value is present in the object
D. Returns True if a sequence with the specified value is not present in the object

A

A. Returns True if both variables are the same object

Explanation: The identity operator is returns True if both variables refer to the same object.

32
Q

hat does x is not y do in Python?

A. Returns True if both variables are the same object
B. Returns True if both variables are not the same object
C. Returns True if a sequence with the specified value is present in the object
D. Returns True if a sequence with the specified value is not present in the object

A

B. Returns True if both variables are not the same object

Explanation: The identity operator is not returns True if both variables do not refer to the same object.

33
Q

What does x == y do in Python?

A. Returns True if x is equal to y
B. Returns True if x is not equal to y
C. Returns True if x is greater than y
D. Returns True if x is less than y

A

A. Returns True if x is equal to y

Explanation: The comparison operator == returns True if x is equal to y.

34
Q

What does x != y do in Python?

A. Returns True if x is equal to y
B. Returns True if x is not equal to y
C. Returns True if x is greater than y
D. Returns True if x is less than y

A

B. Returns True if x is not equal to y

Explanation: The comparison operator != returns True if x is not equal to y.

35
Q

What does x > y do in Python?

A. Returns True if x is equal to y
B. Returns True if x is not equal to y
C. Returns True if x is greater than y
D. Returns True if x is less than y

A

C. Returns True if x is greater than y

Explanation: The comparison operator > returns True if x is greater than y.

36
Q

What does x < y do in Python?

A. Returns True if x is equal to y
B. Returns True if x is not equal to y
C. Returns True if x is greater than y
D. Returns True if x is less than y

A

D. Returns True if x is less than y

Explanation: The comparison operator < returns True if x is less than y.

37
Q

What does x >= y do in Python?

A. Returns True if x is equal to y
B. Returns True if x is not equal to y
C. Returns True if x is greater than or equal to y
D. Returns True if x is less than y

A

C. Returns True if x is greater than or equal to y

Explanation: The comparison operator >= returns True if x is greater than or equal to y.

38
Q

What does x <= y do in Python?

A. Returns True if x is equal to y
B. Returns True if x is not equal to y
C. Returns True if x is greater than y
D. Returns True if x is less than or equal to y

A

D. Returns True if x is less than or equal to y

Explanation: The comparison operator <= returns True if x is less than or equal to y.

39
Q

What does the following code output?

a = 33
b = 200
if b > a:
    print("b is greater than a")

A. a is greater than b
B. b is greater than a
C. a and b are equal
D. Error

A

B. b is greater than a

Explanation: The if statement checks if b is greater than a. Since b (200) is greater than a (33), the output is “b is greater than a”.

40
Q

What does the following code output?

a = 33
b = 33
if b > a:
    print("b is greater than a")
elif a == b:
    print("a and b are equal")

A. b is greater than a
B. a and b are equal
C. a is greater than b
D. Error

A

B. a and b are equal

Explanation: The elif statement checks if a is equal to b. Since a (33) is equal to b (33), the output is “a and b are equal”.

41
Q

What does the following code output?

a = 200
b = 33
if b > a:
    print("b is greater than a")
elif a == b:
    print("a and b are equal")
else:
    print("a is greater than b")

A. b is greater than a
B. a and b are equal
C. a is greater than b
D. Error

A

C. a is greater than b

Explanation: The else statement executes if none of the previous conditions are true. Since a (200) is greater than b (33), the output is “a is greater than b”.

42
Q

What does the following code output?

x = 41
if x > 10:
    print("Above ten,")
    if x > 20:
        print("and also above 20!")
    else:
        print("but not above 20.")

A. Above ten,
B. Above ten, but not above 20.
C. Above ten, and also above 20!
D. Error

A

C. Above ten, and also above 20!

Explanation: The nested if statement checks if x is greater than 20. Since x (41) is greater than 20, the output is “Above ten, and also above 20!”.

43
Q

What does the following code output?

i = 1
while i < 6:
    print(i)
    i += 1

A. 1 2 3 4 5 6
B. 1 2 3 4 5
C. 0 1 2 3 4 5
D. Error

A

B. 1 2 3 4 5

Explanation: The while loop runs as long as i is less than 6. It prints the value of i and then increments i by 1. The output is “1 2 3 4 5”.

44
Q

What does the following code output?

i = 1
while i < 6:
    print(i)
    if i == 3:
        break
    i += 1

A. 1 2 3 4 5
B. 1 2 3
C. 1 2 3 4
D. Error

A

B. 1 2 3

Explanation: The while loop runs as long as i is less than 6. When i equals 3, the break statement terminates the loop. The output is “1 2 3”.

45
Q

What does the following code output?

i = 0
while i < 6:
    i += 1
    if i == 3:
        continue
    print(i)

A. 1 2 3 4 5 6
B. 1 2 3 4 5
C. 1 2 4 5 6
D. Error

A

C. 1 2 4 5 6

Explanation: The while loop runs as long as i is less than 6. When i equals 3, the continue statement skips the current iteration, so 3 is not printed. The output is “1 2 4 5 6”.

46
Q

What does the following code output?

fruits = ["apple", "banana", "cherry"]
for x in fruits:
    print(x)

A. apple banana
B. banana cherry
C. apple banana cherry
D. Error

A

C. apple banana cherry

Explanation: The for loop iterates over each element in the list fruits and prints each element. The output is “apple banana cherry”.

47
Q

What does the following code output?

fruits = ["apple", "banana", "cherry"]
for x in fruits:
    print(x)
    if x == "banana":
        break

A. apple banana cherry
B. apple banana
C. apple
D. Error

A

B. apple banana

Explanation: The for loop iterates over each element in the list fruits. When x equals “banana”, the break statement terminates the loop. The output is “apple banana”.

48
Q

What does the following code output?

fruits = ["apple", "banana", "cherry"]
for x in fruits:
    if x == "banana":
        continue
    print(x)

A. apple banana cherry
B. apple cherry
C. banana cherry
D. Error

A

B. apple cherry

Explanation: The for loop iterates over each element in the list fruits. When x equals “banana”, the continue statement skips the current iteration, so “banana” is not printed. The output is “apple cherry”.

49
Q

What does the following code output?

for x in range(6):
    print(x)

A. 1 2 3 4 5 6
B. 0 1 2 3 4 5 6
C. 0 1 2 3 4 5
D. 1 2 3 4 5

A

C. 0 1 2 3 4 5

Explanation: The for loop iterates over each element in the list fruits. When x equals “banana”, the continue statement skips the current iteration, so “banana” is not printed. The output is “apple cherry”.

50
Q

What does the following code output?

for x in range(2, 6):
    print(x)

A. 1 2 3 4 5 6
B. 0 1 2 3 4 5
C. 2 3 4 5
D. 2 3 4 5 6

A

C. 2 3 4 5

Explanation: The for loop iterates over each element in the list fruits. When x equals “banana”, the continue statement skips the current iteration, so “banana” is not printed. The output is “apple cherry”.

51
Q

What does the following code output?

for x in range(2, 30, 3):
    print(x)

A. 2 5 8 11 14 17 20 23 26 29
B. 2 5 8 11 14 17 20 23 26 29
C. 2 4 6 8 10 12 14 16 18 20 22 24 26 28
D. 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

A

B. 2 5 8 11 14 17 20 23 26 29

Explanation: The for loop iterates over each element in the list fruits. When x equals “banana”, the continue statement skips the current iteration, so “banana” is not printed. The output is “apple cherry”.

52
Q

What does the following code output?

for x in range(6):
    print(x)
else:
    print("Finally finished!")

A. 0 1 2 3 4 5
B. 0 1 2 3 4 5 Finally finished!
C. 0 1 2 3 4 5 6 Finally finished!
D. 0 1 2 3 4 5 6

A

B. 0 1 2 3 4 5 Finally finished!

Explanation: The for loop iterates over each element in the list fruits. When x equals “banana”, the continue statement skips the current iteration, so “banana” is not printed. The output is “apple cherry”.

53
Q

What does the following code output?

def my_function():
    print("Hello from a function")
my_function()

A. Hello from a function
B. Hello from a function
C. Error
D. None

A

B. Hello from a function

Explanation: The my_function() function is defined to print “Hello from a function”. Calling my_function() executes the function, resulting in the output “Hello from a function”.

Explanation: The for loop iterates over each element in the list fruits. When x equals “banana”, the continue statement skips the current iteration, so “banana” is not printed. The output is “apple cherry”.

54
Q

What does the following code output?

def my_function(fname):
    print(fname + " Refsnes")
my_function("Emil")
my_function("Tobias")
my_function("Linus")

A. Emil Refsnes Tobias Refsnes Linus Refsnes
B. Emil Refsnes Tobias Refsnes Linus Refsnes
C. Emil Tobias Linus
D. Error

A

B. Emil Refsnes Tobias Refsnes Linus Refsnes

Explanation: The my_function(fname) function takes a parameter fname and prints it concatenated with “ Refsnes”. Calling my_function() with different arguments results in the output “Emil Refsnes Tobias Refsnes Linus Refsnes”.

Explanation: The for loop iterates over each element in the list fruits. When x equals “banana”, the continue statement skips the current iteration, so “banana” is not printed. The output is “apple cherry”.

55
Q

What does the following code output?

def my_function(x):
    return 5 * x
print(my_function(3))
print(my_function(5))
print(my_function(9))

A. 3 5 9
B. 15 25 45
C. 15 25 45
D. Error

A

C. 15 25 45

Explanation: The my_function(x) function multiplies the input x by 5 and returns the result. The print() statements output the results of my_function(3), my_function(5), and my_function(9), which are 15, 25, and 45, respectively.

56
Q

What does the following code output?

def my_function(country = "Norway"):
    print("I am from " + country)
my_function("Sweden")
my_function("India")
my_function()
my_function("Brazil")

A. I am from Sweden I am from India I am from Norway I am from Brazil
B. I am from Sweden I am from India I am from Norway I am from Brazil
C. I am from Sweden I am from India I am from Norway
D. Error

A

B. I am from Sweden I am from India I am from Norway I am from Brazil

Explanation: The my_function(country) function has a default parameter value of “Norway”. If no argument is provided, it uses the default value. The print() statements output the results of my_function(“Sweden”), my_function(“India”), my_function(), and my_function(“Brazil”), which are “I am from Sweden”, “I am from India”, “I am from Norway”, and “I am from Brazil”, respectively.

57
Q

What does the following code output?

def my_function(child3, child2, child1):
    print("The youngest child is " + child3)
my_function(child1 = "Emil", child2 = "Tobias", child3 = "Linus")

A. The youngest child is Emil
B. The youngest child is Tobias
C. The youngest child is Linus
D. Error

A

C. The youngest child is Linus

xplanation: The my_function(child3, child2, child1) function accepts keyword arguments. The print() statement outputs the value of child3, which is “Linus”. Therefore, the output is “The youngest child is Linus”.

58
Q

What does the following code output?

def my_function(**kid):
    print("His last name is " + kid["lname"])
my_function(fname = "Tobias", lname = "Refsnes")

A. His last name is Tobias
B. His last name is Refsnes
C. His last name is Emil
D. Error

A

B. His last name is Refsnes

Explanation: The my_function(kid) function accepts arbitrary keyword arguments and treats them as a dictionary. The print() statement outputs the value of the “lname” key, which is “Refsnes”. Therefore, the output is “His last name is Refsnes”.

59
Q

What does the following code output?

x = lambda a : a + 10
print(x(5))

A. 5
B. 15
C. 10
D. Error

A

B. 15

Explanation: The lambda function lambda a : a + 10 adds 10 to the input a. The print() statement outputs the result of x(5), which is 15.

60
Q

What does the following code output?

x = lambda a, b : a * b
print(x(5, 6))

A. 11
B. 30
C. 30
D. Error

A

C. 30

Explanation: The lambda function lambda a, b : a * b multiplies the inputs a and b. The print() statement outputs the result of x(5, 6), which is 30.

61
Q

What does the following code output?

x = lambda a, b=2 : a * b
print(x(5))

A. 10
B. 10
C. 5
D. Error

A

B. 10

Explanation: The lambda function lambda a, b=2 : a * b multiplies the input a by the default value of b, which is 2. The print() statement outputs the result of x(5), which is 10.

62
Q

What does the following code output?

x = lambda a, b=2, c=3 : a * b * c
print(x(5))

A. 30
B. 30
C. 10
D. Error

A

B. 30

Explanation: The lambda function lambda a, b=2, c=3 : a * b * c multiplies the input a by the default values of b and c, which are 2 and 3, respectively. The print() statement outputs the result of x(5), which is 30.

63
Q

What does the following code output?

fruits = ["apple", "banana", "cherry", "kiwi", "mango"]
newlist = [x for x in fruits if "a" in x]
print(newlist)

A. [‘apple’, ‘banana’, ‘cherry’, ‘kiwi’, ‘mango’]
B. [‘apple’, ‘banana’, ‘mango’]
C. [‘apple’, ‘banana’, ‘cherry’]
D. Error

A

B. [‘apple’, ‘banana’, ‘mango’]

xplanation: The list comprehension [x for x in fruits if “a” in x] creates a new list containing only the fruits that have the letter “a” in them. The print() statement outputs [‘apple’, ‘banana’, ‘mango’].

64
Q

What does the following code output?

fruits = ["apple", "banana", "cherry", "kiwi", "mango"]
newlist = [x for x in fruits if x != "apple"]
print(newlist)

A. [‘apple’, ‘banana’, ‘cherry’, ‘kiwi’, ‘mango’]
B. [‘banana’, ‘cherry’, ‘kiwi’, ‘mango’]
C. [‘apple’, ‘banana’, ‘cherry’]
D. Error

A

B. [‘banana’, ‘cherry’, ‘kiwi’, ‘mango’]

Explanation: The list comprehension [x for x in fruits if x != “apple”] creates a new list containing all the fruits except “apple”. The print() statement outputs [‘banana’, ‘cherry’, ‘kiwi’, ‘mango’].

65
Q

What does the following code output?

fruits = ["apple", "banana", "cherry", "kiwi", "mango"]
newlist = [x.upper() for x in fruits]
print(newlist)

A. [‘apple’, ‘banana’, ‘cherry’, ‘kiwi’, ‘mango’]
B. [‘APPLE’, ‘BANANA’, ‘CHERRY’, ‘KIWI’, ‘MANGO’]
C. [‘Apple’, ‘Banana’, ‘Cherry’, ‘Kiwi’, ‘Mango’]
D. Error

A

B. [‘APPLE’, ‘BANANA’, ‘CHERRY’, ‘KIWI’, ‘MANGO’]

Explanation: The list comprehension [x.upper() for x in fruits] creates a new list containing all the fruits in uppercase.