class 导致组织模式 python
class results in org mode with python
我在 org-mode
.
中使用 python
classes 时遇到困难
这是 org 模式文件的简单说明:
首先让我们定义一个class
#+BEGIN_SRC python :session :exports code
class The_class():
def __init__(self, a):
self.a = a
def add_me(self):
return self.a + self.a
def sqr_me(self):
return self.a**2
#+END_SRC
然后检查class:
#+BEGIN_SRC python :session :exports both :results output
itm = The_class(3)
print('value of itm.a: {0}'.format(itm.a))
print('attributes: {0}'.format(itm.__dict__))
print('methods of itm: {0}'.format(dir(itm)))
#+END_SRC
并进行计算:
#+BEGIN_SRC python :session :exports both :results output
print(itm.add_me())
print(itm.sqr_me())
#+END_SRC
第二块代码正确识别属性,但是失败
识别 dir(self)
中的 self.add_me()
或 self.sqr_me()
方法。
结果,当调用 itm.add_me()
时,它给了我一个:
例如:
#+RESULTS:
: Traceback (most recent call last):
: File "<stdin>", line 1, in <module>
: File "/var/folders/l7/3vzbfyz93z1fz31m3m6srjcm0000gn/T/babel-18019W4Z/python-1801928I", line 1, in <module>
: print(itm.add_me())
: AttributeError: 'The_class' object has no attribute 'add_me' :
知道发生了什么吗?
问题来自换行符。只需删除它们。
#+BEGIN_SRC python :session :exports code
class The_class():
def __init__(self, a):
self.a = a
def add_me(self):
return self.a + self.a
def sqr_me(self):
return self.a**2
#+END_SRC
我在 org-mode
.
中使用 python
classes 时遇到困难
这是 org 模式文件的简单说明:
首先让我们定义一个class
#+BEGIN_SRC python :session :exports code
class The_class():
def __init__(self, a):
self.a = a
def add_me(self):
return self.a + self.a
def sqr_me(self):
return self.a**2
#+END_SRC
然后检查class:
#+BEGIN_SRC python :session :exports both :results output
itm = The_class(3)
print('value of itm.a: {0}'.format(itm.a))
print('attributes: {0}'.format(itm.__dict__))
print('methods of itm: {0}'.format(dir(itm)))
#+END_SRC
并进行计算:
#+BEGIN_SRC python :session :exports both :results output
print(itm.add_me())
print(itm.sqr_me())
#+END_SRC
第二块代码正确识别属性,但是失败
识别 dir(self)
中的 self.add_me()
或 self.sqr_me()
方法。
结果,当调用 itm.add_me()
时,它给了我一个:
例如:
#+RESULTS:
: Traceback (most recent call last):
: File "<stdin>", line 1, in <module>
: File "/var/folders/l7/3vzbfyz93z1fz31m3m6srjcm0000gn/T/babel-18019W4Z/python-1801928I", line 1, in <module>
: print(itm.add_me())
: AttributeError: 'The_class' object has no attribute 'add_me' :
知道发生了什么吗?
问题来自换行符。只需删除它们。
#+BEGIN_SRC python :session :exports code
class The_class():
def __init__(self, a):
self.a = a
def add_me(self):
return self.a + self.a
def sqr_me(self):
return self.a**2
#+END_SRC