gpt4 book ai didi

class - Python 3 类中的全局变量

转载 作者:行者123 更新时间:2023-12-05 09:24:01 25 4
gpt4 key购买 nike

如何在 Python 3 中的类的初始化程序中使用全局变量?

例如

import urllib
from urllib.request import urlopen
class ABC(object):
def __init__(self):
x=urlopen('http://www.google.com/').read()

如何将 x 转换为全局变量?

最佳答案

您必须在类声明之前声明您的变量,并在 init 函数上使用全局语句:

import urllib
from urllib.request import urlopen

x = None

class ABC(object):

def __init__(self):
global x
x=urlopen('http://www.google.com/').read()

关于class - Python 3 类中的全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17235531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com