码迷,mamicode.com
首页 > 其他好文 > 详细

EX40

时间:2019-01-13 23:29:35      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:nbsp   self   class   __init__   color   line   pre   lin   div   

 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

标签:nbsp   self   class   __init__   color   line   pre   lin   div   

原文地址:https://www.cnblogs.com/shadowyuriya/p/10264456.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!