执行下面Python代码后,输出的结果是?( )
z = 5
def outer():
def inner():
global z
z = 15
inner()
print(z, end="#")
outer()
15#15#
15#5#
5#15#
5#5#