以下函数的返回值是?( )
def pic(a:int,b:str)->str: c=a*b print(c) return c pic(5,’*#*’)
*#**#**#**#**#*
5
5*#*
程序出错