Python 3 object-oriented programming : (Record no. 2792419)

MARC details
000 -LEADER
fixed length control field 07423cam a2200877Ii 4500
001 - CONTROL NUMBER
control field ocn922580702
003 - CONTROL NUMBER IDENTIFIER
control field OCoLC
005 - DATE AND TIME OF LATEST TRANSACTION
control field 20220712020417.0
006 - FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION
fixed length control field m o d
007 - PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION
fixed length control field cr unu||||||||
008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION
fixed length control field 150930s2015 enka o 001 0 eng d
040 ## - CATALOGING SOURCE
Original cataloging agency UMI
Language of cataloging eng
Description conventions rda
-- pn
Transcribing agency UMI
Modifying agency OCLCF
-- N$T
-- IDEBK
-- TEFOD
-- YDXCP
-- EBLCP
-- N$T
-- DEBBG
-- COO
-- IDB
-- OCLCQ
-- MERUC
-- OCLCQ
-- VT2
-- CEF
-- NLE
-- INT
-- OCLCQ
-- UKMGB
-- OCLCQ
-- WYU
-- UAB
-- UKAHL
-- NLW
-- OCLCQ
-- UNITY
-- OCLCO
015 ## - NATIONAL BIBLIOGRAPHY NUMBER
National bibliography number GBB8L6950
Source bnb
016 7# - NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER
Record control number 018007247
Source Uk
016 7# - NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER
Record control number 019127474
Source Uk
019 ## -
-- 919236380
-- 919298178
-- 923518565
-- 929506379
-- 932321157
-- 961514552
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 9781784395957
Qualifying information (electronic bk.)
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 1784395951
Qualifying information (electronic bk.)
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
Cancelled/invalid ISBN 9781784398781
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
Cancelled/invalid ISBN 1784398780
029 1# - (OCLC)
OCLC library identifier AU@
System control number 000057010089
029 1# - (OCLC)
OCLC library identifier CHNEW
System control number 000892934
029 1# - (OCLC)
OCLC library identifier CHVBK
System control number 374520917
029 1# - (OCLC)
OCLC library identifier DEBBG
System control number BV043020391
029 1# - (OCLC)
OCLC library identifier DEBBG
System control number BV043624945
029 1# - (OCLC)
OCLC library identifier DEBSZ
System control number 455699631
029 1# - (OCLC)
OCLC library identifier GBVCP
System control number 882744739
029 1# - (OCLC)
OCLC library identifier UKMGB
System control number 018007247
029 1# - (OCLC)
OCLC library identifier UKMGB
System control number 019127474
029 1# - (OCLC)
OCLC library identifier AU@
System control number 000066233175
029 1# - (OCLC)
OCLC library identifier AU@
System control number 000066528432
029 1# - (OCLC)
OCLC library identifier AU@
System control number 000067100249
029 1# - (OCLC)
OCLC library identifier AU@
System control number 000056953113
035 ## - SYSTEM CONTROL NUMBER
System control number (OCoLC)922580702
Canceled/invalid control number (OCoLC)919236380
-- (OCoLC)919298178
-- (OCoLC)923518565
-- (OCoLC)929506379
-- (OCoLC)932321157
-- (OCoLC)961514552
037 ## - SOURCE OF ACQUISITION
Stock number CL0500000653
Source of stock number/acquisition Safari Books Online
050 #4 - LIBRARY OF CONGRESS CALL NUMBER
Classification number QA76.73.P98
072 #7 - SUBJECT CATEGORY CODE
Subject category code COM
Subject category code subdivision 051360
Source bisacsh
082 04 - DEWEY DECIMAL CLASSIFICATION NUMBER
Classification number 005.1/17
Edition number 23
049 ## - LOCAL HOLDINGS (OCLC)
Holding library MAIN
100 1# - MAIN ENTRY--PERSONAL NAME
Personal name Phillips, Dusty,
Relator term author.
9 (RLIN) 309973
245 10 - TITLE STATEMENT
Title Python 3 object-oriented programming :
Remainder of title unleash the power of Python 3 objects /
Statement of responsibility, etc Dusty Phillips.
250 ## - EDITION STATEMENT
Edition statement Second edition.
264 #1 -
-- Birmingham :
-- Packt Publishing,
-- 2015.
300 ## - PHYSICAL DESCRIPTION
Extent 1 online resource :
Other physical details illustrations
336 ## -
-- text
-- txt
-- rdacontent
337 ## -
-- computer
-- c
-- rdamedia
338 ## -
-- online resource
-- cr
-- rdacarrier
490 1# - SERIES STATEMENT
Series statement Community experience distilled
588 0# -
-- Online resource; title from PDF title page (EBSCO, viewed December 21, 2015).
500 ## - GENERAL NOTE
General note Includes index.
505 0# - FORMATTED CONTENTS NOTE
Formatted contents note Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Introduction tothe second edition; Table of Contents; Preface; Chapter 1: Object-oriented Design; Introducing object-oriented; Objects and classes; Specifying attributes and behaviors; Data describes objects; Behaviors are actions; Hiding details and creating the public interface; Composition; Inheritance; Inheritance provides abstraction; Multiple inheritance; Case study; Exercises; Summary; Chapter 2: Objects in Python; Creating Python classes; Adding attributes; Making it do something; Talking to yourself.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note More argumentsInitializing the object; Explaining yourself; Modules and packages; Organizing the modules; Absolute imports; Relative imports; Organizing module contents; Who can access my data?; Third-party libraries; Case study; Exercises; Summary; Chapter 3: When Objects Are Alike; Basic inheritance; Extending built-ins; Overriding and super; Multiple inheritance; The diamond problem; Different sets of arguments; Polymorphism; Abstract base classes; Using an abstract base class; Creating an abstract base class; Demystifying the magic; Case study; Exercises; Summary.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Chapter 4: Expecting the UnexpectedRaising exceptions; Raising an exception; The effects of an exception; Handling exceptions; The Exception hierarchy; Defining our own exceptions; Case study; Exercises; Summary; Chapter 5: When to Use Object-oriented Programming; Treat objects as objects; Adding behavior to class data with properties; Properties in detail; Decorators -- another way to create properties; Deciding when to use properties; Manager objects; Removing duplicate code; In practice; Case study; Exercises; Summary; Chapter 6: Python Data Structures; Empty objects.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Tuples and named tuplesNamed tuples; Dictionaries; Dictionary use cases; Using defaultdict; Counter; Lists; Sorting lists; Sets; Extending built-ins; Queues; FIFO queues; LIFO queues; Priority queues; Case study; Exercises; Summary; Chapter 7: Python Object-oriented Shortcuts; Python built-in functions; The len() function; Reversed; Enumerate; File I/O; Placing it in context; An alternative to method overloading; Default arguments; Variable argument lists; Unpacking arguments; Functions are objects too; Using functions as attributes; Callable objects; Case study; Exercises; Summary.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Chapter 8: Strings and SerializationStrings; String manipulation; String formatting; Escaping braces; Keyword arguments; Container lookups; Object lookups; Making it look right; Strings are Unicode; Converting bytes to text; Converting text to bytes; Mutable byte strings; Regular expressions; Matching patterns; Matching a selection of characters; Escaping characters; Matching multiple characters; Grouping patterns together; Getting information from regular expressions; Making repeated regular expressions efficient; Serializing objects; Customizing pickles; Serializing web objects; Case study.
520 ## - SUMMARY, ETC.
Summary, etc 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 clearly grasp key concepts from the object-oriented paradigm. This book fully explains classes, data encapsulation, inheritance, polymorphism, abstraction, and exceptions with an emphasis on when you can use each principle to develop well-designed software.
590 ## - LOCAL NOTE (RLIN)
Local note eBooks on EBSCOhost
Provenance (VM) [OBSOLETE] EBSCO eBook Subscription Academic Collection - Worldwide
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Python (Computer program language)
9 (RLIN) 63272
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Object-oriented programming (Computer science)
9 (RLIN) 152887
650 #6 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Python (Langage de programmation)
9 (RLIN) 917996
650 #6 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Programmation orientée objet (Informatique)
9 (RLIN) 937206
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element COMPUTERS
General subdivision Programming Languages
-- Python.
Source of heading or term bisacsh
9 (RLIN) 856607
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Object-oriented programming (Computer science)
Source of heading or term fast
-- (OCoLC)fst01042804
9 (RLIN) 152887
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Python (Computer program language)
Source of heading or term fast
-- (OCoLC)fst01084736
9 (RLIN) 63272
655 #0 - INDEX TERM--GENRE/FORM
Genre/form data or focus term Electronic books.
655 #4 - INDEX TERM--GENRE/FORM
Genre/form data or focus term Electronic books.
776 08 - ADDITIONAL PHYSICAL FORM ENTRY
Display text Print version:
Main entry heading Phillips, Dusty.
Title Python 3 Object-oriented Programming.
Place, publisher, and date of publication Olton Birmingham : Packt Publishing Ltd, ©2015
International Standard Book Number 9781784398781
830 #0 - SERIES ADDED ENTRY--UNIFORM TITLE
Uniform title Community experience distilled.
856 40 - ELECTRONIC LOCATION AND ACCESS
Uniform Resource Identifier <a href="https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1055466">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1055466</a>
938 ## -
-- Askews and Holts Library Services
-- ASKH
-- AH29155289
938 ## -
-- EBL - Ebook Library
-- EBLB
-- EBL3564793
938 ## -
-- EBSCOhost
-- EBSC
-- 1055466
938 ## -
-- ProQuest MyiLibrary Digital eBook Collection
-- IDEB
-- cis32428956
938 ## -
-- YBP Library Services
-- YANK
-- 12584648
994 ## -
-- 92
-- INOPJ
Holdings
Withdrawn status Lost status Damaged status Not for loan Collection code Home library Current library Date acquired Total Checkouts Date last seen Price effective from Koha item type
        E-Books EBSCO OPJGU Sonepat- Campus OPJGU Sonepat- Campus 12/07/2022   12/07/2022 12/07/2022 Electronic-Books

O.P. Jindal Global University, Sonepat-Narela Road, Sonepat, Haryana (India) - 131001

Send your feedback to glus@jgu.edu.in

Hosted, Implemented & Customized by: BestBookBuddies   |   Maintained by: Global Library