flâneur — a map of the web's best reading

practical-python | Practical Python Programming (course by @dabeaz)

dabeaz-course.github.io · 1,490 words · saved by 1 readers

Practical Python Programming (course by @dabeaz)

practical-python | Practical Python Programming (course by @dabeaz) Skip to the content. --> Contents | Previous (3.6 Design discussion) | Next (4.2 Inheritance) 4.1 Classes This section introduces the class statement and the idea of creating new objects. Object Oriented (OO) programming A Programming technique where code is organized as a collection of objects . An object consists of: Data. Attributes Behavior. Methods which are functions applied to the object. You have already been using some OO during this course. For example, manipulating a list. >>> nums = [ 1 , 2 , 3 ] >>> nums . append

Explore this link on the map →

related reading