python问题 我想创建一个一个参数的函数:引用一个全局变量作为参数,然后在这个函数里面这个全局

2024年11月30日 00:36
有2个网友回答
网友(1):

给你写一小段代码。

import os,sys,time,traceback

global something_count_as_global #
something_count_as_global = 3 #init the value
def call_many_times():
    global something_count_as_global #this declare is important
    something_count_as_global +=1

def test():
    global something_count_as_global
    for i in range(10):
        call_many_times()
        print something_count_as_global #expected, 3, 4, 5, ...12

if __name__=="__main__":

    test()

网友(2):

全局变量 不可以作为形参。也就是说 他不能被函数引用

可以参考一下这个网站的回答:网页链接