运行以下函数,正确的打印是?( )
def test(num):
print("the number is %"%(num))
test(888)
the number is %
the number is 888.
the number is %888
the number is 888.888