判断题

执行下面Python代码后,将只输出 try 。(    )

def test():
	try:
		return "try"
	finally:
		print("finally执行了")

print(test())
A 正确
B 错误
赣ICP备20007335号-2