下列程序段的运行结果为?( ) 
下列程序段的运行结果为?( )
def f(n): if n<=0: return 1 else: return f(n-1)*3 print(f(4))
9
27
81
243