测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A60046. 下面python程序段的输出结果是?( )def add_Run(L=None)

单选题

题目描述

下面python程序段的输出结果是?( 

def add_Run(L=None):
     if L is None:
          L = ['Lying']
     else:
          L.append('Run')
     return L
add_Run()
print(add_Run())
print(add_Run(['Lying']))

选项(单选)