The two snippets of the following Python codes are equivalent.
CODE 1 @fdef f1(): print(“Hello”)CODE 2 def f1(): print(“Hello”)f1 = f(f1)
CODE 1 @fdef f1(): print(“Hello”)CODE 2 def f1(): print(“Hello”)f1 = f(f1)The two snippets of the following Python codes are equivalent.
CODE 1 @fdef f1(): print(“Hello”)CODE 2 def f1(): print(“Hello”)f1 = f(f1) Correct Answer True
মোঃ আরিফুল ইসলাম
Feb 20, 2025