adplus-dvertising
frame-decoration

Question

Identify the decorator in the snippet of code shown below.
def sf():
     pass
sf = mk(sf)
@f
def sf():
     return

a.

@f

b.

f

c.

sf()

d.

mk

Answer: (d).mk

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Identify the decorator in the snippet of code shown below.