EX40

Posted shadowyuriya

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EX40相关的知识,希望对你有一定的参考价值。

 1 class Song(object):
 2     
 3     def __init__(self):
 4         
 5         self.lyrics = ["这一路上走走停停,",
 6                     "顺着少年漂流的痕迹,",
 7                     "什么也不省心。"]
 8         
 9     def sing_me_a_song(self):
10         for line in self.lyrics:
11             print(line)
12 
13 thing = Song()
14 thing.sing_me_a_song()

 

以上是关于EX40的主要内容,如果未能解决你的问题,请参考以下文章

EX40

ex40.py

EX40

无法找到指定dll库文件skinH_EL.dll中的输出命令skinH_Attach_EX_

ex40 模块,对象和类

为啥这段代码会泄露? (简单的代码片段)