笨方法学python 习题39

习题39
python:3.9

class Song(object):

    def __init__(self,lyrics):
        self.lyrics =lyrics
    
    def sing_me_a_song(self):
        for line in self.lyrics:
            print(line)
    
happy_bday =Song(["Happy birthday to you",
                  "I don't want to get sued",
                  "So I'll stop right there"])
                  
bulls_on_parade = Song(["They rally around the family",
                     "With pockets full of shells"])
                     
happy_bday.sing_me_a_song()
bulls_on_parade.sing_me_a_song()

运行结果

PS C:\Users\78523\mybuff> python ex39.py
Happy birthday to you
I don't want to get sued
So I'll stop right there
They rally around the family
With pockets full of shells

加分习题
1.在 Python 文档中找到 dictionary (又被称作 dicts, dict)的相关的内容,学着对 dict 做更多的操作。
2.找出一些 dict 无法做到的事情。例如比较重要的一个就是 dict 的内容是无序的,你可以检查一下看看是否真是这样。
3.试着把for-loop执行到 dict 上面,然后试着在 for-loop 中使用 dict 的 items()函数,看看会有什么样的结果。
以上均没研究明白,希望大家指点一下
习题39

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值