Clicker Question #5 -- the following code snippet should print out "I'm here." `conditional = False python = "great" if conditional: if python == "great": print("Yay Python!") else: print("Oh no.") else: print("I'm here.")` Oh no.
Clicker Question #5 -- the following code snippet should print out "I'm here."
`conditional = False
python = "great"
if conditional:
if python == "great":
print("Yay Python!")
else:
print("Oh no.")
else:
print("I'm here.")`
Oh no.