美文网首页
python学习札记

python学习札记

作者: who2you | 来源:发表于2017-10-21 13:39 被阅读0次

    随笔记

    • python中,注释语句用【alt+3】,反注释用【alt+4】

    • python中的几个词汇

      • Class
      • Instance
      • Constructure
    • 关于constructure的小程序

    #entertainment_center

    import media
    
    toy_story = media.Movie("Toy Story",
                            "A story of a boy and his toys that come to life",
                            "http://upload.wikimedia.org/wikipedia/en/1/13/Toy_Story.jpg",
                            "https://www.youtube.com/watch?v=vwyZH85NQC4")
    
    print(toy_story.storyline)
    

    写这个程序的时候,一直报错误,错误描述如下

    相关文章

      网友评论

          本文标题:python学习札记

          本文链接:https://www.haomeiwen.com/subject/giouuxtx.html