python共通変数_Pythonの共通変数
python共通変数
By default all numbers, methods, variables of the class are public in the Python programming language; we can access them outside of the class using the object name.
デフォルトでは、このクラスのすべての数字、方法、変数はPythonプログラミング言語で共通です.オブジェクト名を使用してクラスの外部にアクセスできます.
Consider the given example:
指定された例を考慮します.
Here, we have two variables name and age both are initializing with default values ("XYZ"and 0) while declaring the object using __init__ method.
ここでは、2つの変数nameとageがデフォルト値(「XYZ」と0)で初期化され、同時に__が使用されます.init__メソッド宣言オブジェクト.
Later, in the program, outside of the class definition – we are assigning some values ("Amit"and 21) to name and age, that is possible only if variables are public.
その後、プログラムでは、クラス定義の外にnameとageにいくつかの値(「Amit」と21)を割り当て、変数がpublicの場合にのみ可能になります.
Example:
例:
しゅつりょくりょう
python共通変数
By default all numbers, methods, variables of the class are public in the Python programming language; we can access them outside of the class using the object name.
デフォルトでは、このクラスのすべての数字、方法、変数はPythonプログラミング言語で共通です.オブジェクト名を使用してクラスの外部にアクセスできます.
Consider the given example:
指定された例を考慮します.
Here, we have two variables name and age both are initializing with default values ("XYZ"and 0) while declaring the object using __init__ method.
ここでは、2つの変数nameとageがデフォルト値(「XYZ」と0)で初期化され、同時に__が使用されます.init__メソッド宣言オブジェクト.
Later, in the program, outside of the class definition – we are assigning some values ("Amit"and 21) to name and age, that is possible only if variables are public.
その後、プログラムでは、クラス定義の外にnameとageにいくつかの値(「Amit」と21)を割り当て、変数がpublicの場合にのみ可能になります.
Example:
例:
# Python example for public variables
class person:
def __init__(self):
# default values
self.name = "XYZ"
self.age = 0
def printValues(self):
print "Name: ",self.name
print "Age : ",self.age
# Main code
# declare object
p = person()
# print
p.printValues();
# since variables are public by default
# we can access them directly here
p.name = "Amit"
p.age = 21
# print
p.printValues ();
Output しゅつりょくりょう
Name: XYZ
Age : 0
Name: Amit
Age : 21
翻訳:https://www.includehelp.com/python/public-variables.aspx python共通変数