为了账号安全,请及时绑定邮箱和手机立即绑定
  • 实例方法不同的是,这里有两点需要特别注意:
    类方法需要使用@classmethod来标记为类方法,否则定义的还是实例方法
    查看全部
  • 面向对象编程


    查看全部
  • When you first get started in Evernote, you can probably get to what you need quickly. But as you start to add more notes, you may find that you don’t get around as fast as you used to. Scrolling, navigating, and searching—it all starts to take a little bit longer.

    Thankfully, there’s a highly underrated feature that is here to help: note links.

    A note link is exactly what it sounds like: a link that takes you from one note to another within Evernote. While this might not seem to be much of a game changer, this seemingly simple feature is actually a secret weapon to create structure and zoom around your notes.

    We’ve rounded up everything you need to know about note links, from why they matter to how they work, and we’ll give you some ideas for using them. If you haven’t thought much of note links in the past (or even heard of them), it’s time to take a closer look.

    Already a note links expert? Head straight to the good stuff—check out our public notebook that’s filled with ideas and examples of how to use them.

    查看全部
    0 采集 收起 来源:课程介绍

    2022-03-24

  • 没有在实例化对象中,调用并修改属性时,类属性改变,对象相应的属性也会改变。

    但在对象中,调用并修改了类属性,则申请了新的空间,修改类的属性不会改变对象的属性。


    应该是这样。

    查看全部
    0 采集 收起 来源:Python类属性

    2022-03-18

  • def calc_prod(list_):

        def calc():

            j = 1

            for i in list_:

                j = j * i

            print(j)

            return j

        return calc

        

    f = calc_prod([1,2,3])

    f()

    查看全部
    0 采集 收起 来源:Python返回函数

    2022-03-07

  • def f(x):

        return x.title()   #把每个单词的第一个字母转化为大写,其余小写

        

    for item in map(f,['alice', 'BOB', 'CanDY']):

        print item

    查看全部
  • 网络爬虫是典型的应用程序,它的工作原理就是通过不断的请求互联网的页面,并从回应中解析获取出有用的数据;数据积累后,可以有很多用处。

    查看全部
    0 采集 收起 来源:HTTP响应的内容

    2022-03-03

  • eval()函数可以把字符串转换为等值的结果,比如eval('1+1'),得到结果为2。

    查看全部
  • 通过input()函数,输入的是字符串,需要转换为数据类型

    查看全部
  • Python 字典(Dictionary) items() 函数以列表返回可遍历的(键, 值) 元组数组。

    tinydict = {'Google': 'www.google.com', 'Runoob': 'www.runoob.com', 'taobao': 'www.taobao.com'} 
    print "字典值 : %s" %  tinydict.items()
     # 遍历字典列表
    for key,values in  tinydict.items():    
        print key,values


    输出结果:

    字典值 : [('Google', 'www.google.com'), ('taobao', 'www.taobao.com'), ('Runoob', 'www.runoob.com')]

    Google www.google.com
    taobao www.taobao.com

    Runoob www.runoob.com

    查看全部
  • 一个*代表的是传入一个元组(tuple),而两个*代表的是传入一个字典(dict)

    查看全部
  • 在Python的世界中,object是父子关系的顶端,所有的数据类型的父类都是它;type是类型实例关系的顶端,所有对象都是它的实例的。它们两个的关系可以这样描述:

    object是一个type,object is and instance of type。即Object是type的一个实例。

    查看全部
    0 采集 收起 来源:Python判断类型

    2022-02-28

  • # super().__init__(). ——————继承
    # 在Python2中,super()的完整用法是super(自己类名,self)
    # 在Python2中需要写完整,而Python3中可以简写为super()

    查看全部
    0 采集 收起 来源:Python判断类型

    2022-02-26

  • private:私有的属性,是以双下划线'__'开头的属性。eg1:__localtion

    protected:受保护的

    public:公共的

    查看全部
  • def odde(x):
       return x%2==1
    print(list(filter(odde,[1, 4, 6, 7, 9, 12, 17])))  #把迭代转换list类型

    查看全部

举报

0/150
提交
取消
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!