Python 3 Object-oriented Programming · 2nd Edition

Python 3 Object-oriented Programming · 2nd Edition
Authors
Phillips, Dusty
Publisher
Packt Publishing
Tags
python , programming
Date
2010-07-26T00:00:00+00:00
Size
2.73 MB
Lang
en
Downloaded: 615 times

Unleash the power of Python 3 objects About This Book * Stop writing scripts

and start architecting programs * Learn the latest Python syntax and libraries

_A practical, hands-on tutorial that teaches you all about abstract design

patterns and how to implement them in Python 3 Who This Book Is For If you're

new to object-oriented programming techniques, or if you have basic Python

skills and wish to learn in depth how and when to correctly apply object-

oriented programming in Python to design software, this is the book for you.

What You Will Learn * Implement objects in Python by creating classes and

defining methods * Separate related objects into a taxonomy of classes and

describe the properties and behaviors of those objects via the class

interface_ Extend class functionality using inheritance * Understand when to

use object-oriented features, and more importantly when not to use them *

Discover what design patterns are and why they are different in Python *

Uncover the simplicity of unit testing and why it's so important in Python *

Grasp common concurrency techniques and pitfalls in Python 3 * Exploit object-

oriented programming in key Python technologies such as Kivy and Django. *

Object- oriented programming concurrently with asyncio In Detail Python 3 is

more versatile and easier to use than ever. It runs on all major platforms in

a huge array of use cases. Coding in Python minimizes development time and

increases productivity in comparison to other languages. Clean, maintainable

code is easy to both read and write using Python's clear, concise syntax.

Object-oriented programming is a popular design paradigm in which data and

behaviors are encapsulated in such a way that they can be manipulated

together. Many modern programming languages utilize the powerful concepts

behind object-oriented programming and Python is no exception. Starting with a

detailed analysis of object-oriented analysis and design, you will use the

Python programming language to