SlideShare a Scribd company logo
1 of 6
~  Python  でオブジェクトがどのように生成されるか  ~ Python  で “ a = 3”  を実行すると、、、 http://www.cafechantant.com/blog/
MacBook:~ kunkichi$ python Python 2.3.5 (#1, Jan 13 2006, 20:13:11)  [GCC 4.0.1 (Apple Computer, Inc. build 5250)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> a = 3 a=3 を実行してみる。 この時 python の内部では、、、
3 値 3 のオブジェクトが作成される。
3 a 変数 a が作成される。
3 a この二つが、、、
3 a リンクする。

More Related Content

Viewers also liked

FINAL_ PSP Commentaries copy
FINAL_ PSP Commentaries copyFINAL_ PSP Commentaries copy
FINAL_ PSP Commentaries copy
Gentry Fitch
 
KIM ELIZABETH YOUNG
KIM ELIZABETH YOUNGKIM ELIZABETH YOUNG
KIM ELIZABETH YOUNG
Kim Young
 
Drug Policy Presentation
Drug Policy PresentationDrug Policy Presentation
Drug Policy Presentation
Cori Muller
 

Viewers also liked (11)

Transfer of Property Case (R.Kempraj v. Barton Son & Co.)
Transfer of Property Case (R.Kempraj v. Barton Son & Co.)Transfer of Property Case (R.Kempraj v. Barton Son & Co.)
Transfer of Property Case (R.Kempraj v. Barton Son & Co.)
 
Επίσκεψη στο φωτογραφείο
Επίσκεψη στο φωτογραφείοΕπίσκεψη στο φωτογραφείο
Επίσκεψη στο φωτογραφείο
 
Analisi chimico fisiche basic ita
Analisi chimico fisiche basic itaAnalisi chimico fisiche basic ita
Analisi chimico fisiche basic ita
 
FINAL_ PSP Commentaries copy
FINAL_ PSP Commentaries copyFINAL_ PSP Commentaries copy
FINAL_ PSP Commentaries copy
 
KIM ELIZABETH YOUNG
KIM ELIZABETH YOUNGKIM ELIZABETH YOUNG
KIM ELIZABETH YOUNG
 
Drug Policy Presentation
Drug Policy PresentationDrug Policy Presentation
Drug Policy Presentation
 
Advance Web Designing - Lecture 1 / 30
Advance Web Designing - Lecture 1 / 30Advance Web Designing - Lecture 1 / 30
Advance Web Designing - Lecture 1 / 30
 
materia educación artistica
materia educación artisticamateria educación artistica
materia educación artistica
 
Terapia para tus ojos
Terapia para tus ojosTerapia para tus ojos
Terapia para tus ojos
 
Cupic_BA-Arbeit
Cupic_BA-ArbeitCupic_BA-Arbeit
Cupic_BA-Arbeit
 
Mariana arredondo del arroyo
Mariana arredondo del arroyoMariana arredondo del arroyo
Mariana arredondo del arroyo
 

Object 01

  • 1. ~ Python でオブジェクトがどのように生成されるか ~ Python で “ a = 3” を実行すると、、、 http://www.cafechantant.com/blog/
  • 2. MacBook:~ kunkichi$ python Python 2.3.5 (#1, Jan 13 2006, 20:13:11) [GCC 4.0.1 (Apple Computer, Inc. build 5250)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> a = 3 a=3 を実行してみる。 この時 python の内部では、、、
  • 3. 3 値 3 のオブジェクトが作成される。
  • 4. 3 a 変数 a が作成される。