Python Interview questions - faa
(Python version 3.9 or later version)
Which of the following python statements will not be ignored by python interpreter, but the interpreter does nothing at run time as the intended use of the statement is to act as a stand-in or placeholder?
def f9():
    '''This is a docstring'''
    # This is a comment
    pass
    yield
'''This is a docstring'''
# This is a comment
pass
yield
gk