|
|
|
|
LEADER |
00000cam a2200000Ia 4500 |
001 |
OR_ocm71666054 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr unu|||||||| |
008 |
060925s2006 cau ob 001 0 eng d |
040 |
|
|
|a UMI
|b eng
|e pn
|c UMI
|d BAKER
|d OCLCQ
|d MKN
|d UBY
|d MNU
|d CEF
|d OCLCQ
|d DEBSZ
|d OCLCQ
|d OCLCF
|d OCLCQ
|d OCLCE
|d N$T
|d CUSER
|d TEFOD
|d IDEBK
|d YDXCP
|d EBLCP
|d TEFOD
|d OCLCQ
|d NRC
|d OCLCQ
|d AU@
|d OCLCQ
|d UKAHL
|d OCLCO
|d NZAUC
|d OCLCQ
|d OCLCO
|
019 |
|
|
|a 71252745
|a 72899831
|a 297853055
|a 326781443
|a 607860396
|a 607860397
|a 759519506
|a 772458272
|a 863821429
|
020 |
|
|
|a 0596100469
|q (pbk.)
|
020 |
|
|
|a 9780596100469
|q (pbk.)
|
020 |
|
|
|a 9780596522636
|q (electronic bk.)
|
020 |
|
|
|a 0596522630
|q (electronic bk.)
|
020 |
|
|
|a 9781449379100
|q (electronic bk.)
|
020 |
|
|
|a 1449379109
|q (electronic bk.)
|
024 |
3 |
|
|a 9780596100469
|
029 |
1 |
|
|a AU@
|b 000062580968
|
029 |
1 |
|
|a DEBSZ
|b 355370891
|
029 |
1 |
|
|a DEBSZ
|b 405505590
|
029 |
1 |
|
|a HEBIS
|b 291443729
|
035 |
|
|
|a (OCoLC)71666054
|z (OCoLC)71252745
|z (OCoLC)72899831
|z (OCoLC)297853055
|z (OCoLC)326781443
|z (OCoLC)607860396
|z (OCoLC)607860397
|z (OCoLC)759519506
|z (OCoLC)772458272
|z (OCoLC)863821429
|
037 |
|
|
|a CL0500000005
|b Safari Books Online
|
037 |
|
|
|a EE7C86E0-41C5-4204-AF59-1E01142B1DF3
|b OverDrive, Inc.
|n http://www.overdrive.com
|
050 |
|
4 |
|a QA76.73.P98
|b M37 2006
|
072 |
|
7 |
|a COM
|x 051310
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 051280
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 051130
|2 bisacsh
|
082 |
0 |
4 |
|a 005.13/3
|2 22
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Martelli, Alex.
|
245 |
1 |
0 |
|a Python in a nutshell /
|c by Alex Martelli.
|
250 |
|
|
|a 2nd ed.
|
260 |
|
|
|a Sebastopol, CA :
|b O'Reilly,
|c 2006.
|
300 |
|
|
|a 1 online resource (712 pages)
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
504 |
|
|
|a Includes bibliographical references and index.
|
588 |
0 |
|
|a Print version record.
|
505 |
0 |
|
|a Copyright; Table of Contents; Preface; How This Book Is Organized; Part I, Getting Started with Python; Part II, Core Python Language and Built-ins; Part III, Python Library and Extension Modules; Part IV, Network and Web Programming; Part V, Extending and Embedding; Conventions Used in This Book; Reference Conventions; Typographic Conventions; Using Code Examples; How to Contact Us; Safari® Enabled; Acknowledgments; I; Chapter 1. Introduction to Python; The Python Language; The Python Standard Library and Extension Modules; Python Implementations; CPython; Jython; IronPython.
|
505 |
8 |
|
|a Choosing Between CPython, Jython, and IronPythonPyPy and Other Experimental Versions; Licensing and Price Issues; Python Development and Versions; Python Resources; Documentation; Newsgroups and Mailing Lists; Special-Interest Groups; Python Business Forum; Python Journal; Extension Modules and Python Sources; The Python Cookbook; Books and Magazines; Chapter 2. Installation; Installing Python from Source Code; Windows; Uncompressing and unpacking the Python source code; Building the Python source code with Microsoft Visual Studio 2003; Building Python for debugging.
|
505 |
8 |
|
|a Installing after the buildBuilding Python for Cygwin; Unix-Like Platforms; Uncompressing and unpacking the Python source code; Configuring, building, and testing; Installing after the build; Installing Python from Binaries; Apple Macintosh; Installing Jython; Installing IronPython; Chapter 3. The Python Interpreter; The python Program; Environment Variables; Command-Line Syntax and Options; Interactive Sessions; Python Development Environments; IDLE; Other Free Cross-Platform Python IDEs; Platform-Specific Free Python IDEs; Commercial Python IDEs; Free Text Editors with Python Support.
|
505 |
8 |
|
|a Tools for Checking Python ProgramsRunning Python Programs; The jython Interpreter; The IronPython Interpreter; II; Chapter 4. The Python Language; Lexical Structure; Lines and Indentation; Character Sets; Tokens; Identifiers; Keywords; Operators; Delimiters; Literals; Statements; Simple statements; Compound statements; Data Types; Numbers; Integer numbers; Floating-point numbers; Complex numbers; Sequences; Iterables; Strings; Tuples; Lists; Sets; Dictionaries; None; Callables; Boolean Values; Variables and Other References; Variables; Object attributes and items.
|
505 |
8 |
|
|a Accessing nonexistent referencesAssignment Statements; Plain assignment; Augmented assignment; del Statements; Expressions and Operators; Comparison Chaining; Short-Circuiting Operators; The Python 2.5 ternary operator; Numeric Operations; Numeric Conversions; Arithmetic Operations; Division; Exponentiation; Comparisons; Bitwise Operations on Integers; Sequence Operations; Sequences in General; Sequence conversions; Concatenation and repetition; Membership testing; Indexing a sequence; Slicing a sequence; Strings; Tuples; Lists; Modifying a list; In-place operations on a list; List methods.
|
520 |
|
|
|a This book offers Python programmers one place to look when they needhelp remembering or deciphering the syntax of this open source languageand its many powerful but scantily documented modules. Thiscomprehensive reference guide makes it easy to look up the mostfrequently needed information--not just about the Python languageitself, but also the most frequently used parts of the standard libraryand the most important third-party extensions. Ask any Python aficionado and you'll hear that Python programmers haveit all: an elegant object-oriented language with readable andmaintainab.
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
650 |
|
0 |
|a Python (Computer program language)
|
650 |
|
6 |
|a Python (Langage de programmation)
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x C♯
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x Java.
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x Pascal.
|2 bisacsh
|
650 |
|
7 |
|a Python (Computer program language)
|2 blmlsh
|
650 |
|
7 |
|a Python (Computer program language)
|2 fast
|
776 |
0 |
8 |
|i Print version:
|a Martelli, Alex.
|t Python in a nutshell.
|b 2nd ed.
|d Sebastopol, CA : O'Reilly, ©2006
|z 0596100469
|w (OCoLC)71743477
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/0596100469/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH26837888
|
938 |
|
|
|a Baker & Taylor
|b BKTY
|c 39.99
|d 29.99
|i 0596100469
|n 0006795600
|s active
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL540751
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 414947
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n cis28409078
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 7365567
|
994 |
|
|
|a 92
|b IZTAP
|