71. What will be the output of the following Python code?
'%s' %((1.23,),)
'%s' %((1.23,),)'%s' %((1.23,),)print("%-06d"%x)def f(x):
def f1(*args, **kwargs):
print("*", 5)
x(*args, **kwargs)
print("*", 5)
return f1
@f
def p(m):
p(m)
print("hello")def f(x):
def f1(*args, **kwargs):
print("*"* 5)
x(*args, **kwargs)
print("*"* 5)
return f1
def a(x):
def f1(*args, **kwargs):
print("%"* 5)
x(*args, **kwargs)
print("%"* 5)
return f1
@f
@a
def p(m):
print(m)
p("hello")'The {} side {1} {2}'.format('bright', 'of', 'life')a='hello'
q=10
vars()