Confused Codes

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_33733970/article/details/83659259
inner_net = False
p_ip = '1.1.1.1'
t_ip = '2.2.2.2'


def switch_ip(a, b, c):
    if a:
        b = c
        return b
    return b


def read_apps():
    # global p_ip
    p_ip = switch_ip(inner_net, p_ip, t_ip)
    print(p_ip)


if __name__ == '__main__':
    read_apps()

猜你喜欢

转载自blog.csdn.net/qq_33733970/article/details/83659259