Python 3 のクラスの初期化子内でグローバル変数を使用する方法は?
例えば
import urllib
from urllib.request import urlopen
class ABC(object):
def __init__(self):
x=urlopen('http://www.google.com/').read()
x をグローバル変数に変換するにはどうすればよいですか?
Python 3 のクラスの初期化子内でグローバル変数を使用する方法は?
例えば
import urllib
from urllib.request import urlopen
class ABC(object):
def __init__(self):
x=urlopen('http://www.google.com/').read()
x をグローバル変数に変換するにはどうすればよいですか?