61. What will be the output of the following Python code snippet?
X=”hi”
print(“05d”%X)
X=”hi”
print(“05d”%X)X=”hi”
print(“05d”%X)def mk(x):
def mk1():
print("Decorated")
x()
return mk1
def mk2():
print("Ordinary")
p = mk(mk2)
p()'%d %s %g you' %(1, 'hello', 4.0)i. bin((2**16)-1)
ii. '{}'.format(bin((2**16)-1))'{0:.2f}'.format(1.234)