Given the code below, which of the following answers best describes what is stored in the "result" variable?

marbles = ["red","green","blue"]
result = "green" in marbles
Select one:

a.
A string "green" value

b.
A small list holding just "green" in one element

c.
An integer 1 value

d.
A Boolean "True" value

1 answer

d. A Boolean "True" value