python学习札记

随笔记

  • 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学习札记)