What is the possible output of the following?

r = random.random() + 1

print(r)

Group of answer choices

1.0 <= r < 2.0

1.0 <= r <= 2.0

1.0 < r <= 2.0

1.0 < r < 2.0