我定义完运行的时候只能输出b的type
def printf(b):
b=1.1
c=type(b)
b = bytes(b)
c = bytes(c)
c=c.replace("'","")
c=c.replace("'","")
c=c.replace("<type","")
c=c.replace(">","")
print('"%'+c+'",'+b)
return b
a=114514
printf(a)