break, continue, passpass statement does nothing. It is used as a placeholder when a statement is syntactically required but no action is needed. It does not skip loop iterations.break statement terminates the loop completely and exits from the loop. It does not skip only the current iteration.continue statement skips the remaining statements of the current loop iteration and moves control directly to the next iteration of the loop. Therefore this option is correct.skip. Hence this option is incorrect.continuefruits = ['apple','banana','cherry'] print(fruits[0])
def sayHello():
print("Hello World")
sayHello()
sayHello()
Show the use of fsafe_close.