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的主要内容,如果未能解决你的问题,请参考以下文章