Cargando…

The Python quick syntax reference /

The Python Quick Syntax Reference is the 'go to' book that contains an easy to read and useguide to Python programming and development. This condensed code and syntaxreference presents the Python language in a well-organized format designed tobe used time and again. You won't find jar...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Walters, Gregory (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [Berkeley, CA] : Apress, [2014]
Colección:Expert's voice in Python.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ii 4500
001 OR_ocn869747985
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 140203s2014 nyua o 001 0 eng d
040 |a UMI  |b eng  |e pn  |c UMI  |d BTCTA  |d CDX  |d B24X7  |d GW5XE  |d COO  |d DEBBG  |d S4S  |d IDEBK  |d DEBSZ  |d E7B  |d YDXCP  |d EBLCP  |d OCLCQ  |d OCLCF  |d VT2  |d OCLCQ  |d LIV  |d MERUC  |d OCLCQ  |d ESU  |d OCLCQ  |d IOG  |d N$T  |d REB  |d CEF  |d INT  |d U3W  |d OCLCQ  |d WYU  |d YOU  |d UWO  |d OCLCQ  |d UAB  |d UKAHL  |d OCLCQ  |d BRF  |d SFB  |d DCT  |d OCLCO  |d OCLCQ  |d OCLCO 
019 |a 880827100  |a 1005831510  |a 1026433196  |a 1048190624  |a 1065791163  |a 1067178934  |a 1160244751  |a 1204020523 
020 |a 9781430264798  |q (electronic bk.) 
020 |a 1430264799  |q (electronic bk.) 
020 |z 9781430264781 
020 |z 1430264780 
024 7 |a 10.1007/978-1-4302-6479-8  |2 doi 
029 1 |a AU@  |b 000053305665 
029 1 |a CHNEW  |b 000887679 
029 1 |a CHVBK  |b 374465967 
029 1 |a DEBBG  |b BV041720134 
029 1 |a DEBBG  |b BV041784103 
029 1 |a DEBBG  |b BV042989660 
029 1 |a DEBBG  |b BV043609451 
029 1 |a DEBSZ  |b 404338216 
029 1 |a DEBSZ  |b 407738835 
029 1 |a NZ1  |b 15579378 
035 |a (OCoLC)869747985  |z (OCoLC)880827100  |z (OCoLC)1005831510  |z (OCoLC)1026433196  |z (OCoLC)1048190624  |z (OCoLC)1065791163  |z (OCoLC)1067178934  |z (OCoLC)1160244751  |z (OCoLC)1204020523 
037 |a CL0500000376  |b Safari Books Online 
050 4 |a QA76.73.P98  |b W235 2014 
072 7 |a COM  |x 051360  |2 bisacsh 
072 7 |a UY  |2 bicssc 
082 0 4 |a 005.133  |2 23 
049 |a UAMI 
100 1 |a Walters, Gregory,  |e author. 
245 1 4 |a The Python quick syntax reference /  |c Gregory Walters. 
264 1 |a [Berkeley, CA] :  |b Apress,  |c [2014] 
264 4 |c Ã2014 
300 |a 1 online resource (1 volume) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file  |b PDF  |2 rda 
490 1 |a Expert's voice in Python 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed November 28, 2017). 
505 0 |a At a Glance; Introduction; Chapter 1: Hello Python; Python's Interactive Shell; Commands; Multiline Statements; The Code; Decoding the Code; Comments; Chapter 2: Variables; Case Sensitivity; Proper Variable Naming; Assignment; Data Types; Numeric; String; List; Tuple; Dictionary; Data Type Conversion; int(s, [base]); long(s, [base]); float(s); complex(real [, imaginary]); str(x); tuple(s); list(s); set(l); dict(s) (s must be sequence of (key, value) tuples); frozenset(s); chr(x); unichr(x); ord(c); hex(x); oct(x); Chapter 3: Operators; Arithmetic Operators; + Addition; -- Subtraction. 
505 8 |a * Multiplication/ Division; % Modulus; ** Exponent; // Floor Division; Comparison Operators; ==; == (Strings);!=; ;>; =;>; Precedence of Operators; Chapter 4: Strings; Appending to Srings; String Functions; len(); min(); max(); s1 in s2; s1 not in s2; s1 + s2; s[x]; s[x1:x2]; s[x1:x2:x3]; String Methods; str.capitalize(); str.center(width[, fillchar]); str.count(sub[, start[, end]]). 
505 8 |a IF / ELIF / ELSE StatementsFor; Break; Continue; Else; Pass; While; Chapter 6: Data Structures; Data Structure Example; Digging Deeper; Lists; List Functions; len(L); min(L); max(L) function; x in L; x not in L; L1 + L2; L[x]; L[x1:x2]; del(L[x]); List Methods; .append(x); .extend(L); .insert(i, x); .remove(x); .pop([i]); .index(x); .count(x); .sort(); .reverse(); Dictionaries; Dictionary Functions; len(dictionary); dict(list); Dictionary Methods; .clear(); .copy(); .get(key[, default]); .has_key(key); .items(); .keys(); .pop(key[, default]); .setdefault(key[, default]); .update(other). 
505 8 |a Str.decode([encoding[, errors]])str.encode([encoding[, errors]]); str.endswith(suffix[, start[, end]]); str.expandtabs([tabsize]); str.find(substring[, start[, end]]); str.format(*args, **kwargs); str.format_map(mapping) Python 3.x only; str.index(substring[, start[, end]]); str.isalnum(); str.isalpha(); str.isdecimal() Python 3.x only; str.isdigit(); str.isidentifier() Python 3.x only; str.islower(); str.isprintable() Python 3.x only; str.isspace(); str.istitle(); str.isupper(); str.join(iterable); str.ljust(width[, fillchar]); str.lower(); str.lstrip([chars]); str.maketrans(x[, y]]) Python 3.x only. 
505 8 |a Str.partition(sep)str.replace(old, new[, count]); str.rfind(sub[, start[, end]]); str.rindex(sub[, start[, end]]); str.rjust(width[, fillchar]); str.rpartition(sep); str.rsplit([sep[, maxsplit]]); str.rstrip([chars]); str.split([sep[, maxsplit]]); str.splitlines ([keepends]); str.startswith(prefix[, start[, end]]); str.strip ([chars]); str.swapcase(); str.title(); str.translate(table[, deletechars]) Python 2.x; str.translate(table) Python 3.x; str.upper(); str.zfill(width); Print Statement; Python 2.x String Formatting; Python 3.x String Formatting; Chapter 5: Conditional Statements. 
520 |a The Python Quick Syntax Reference is the 'go to' book that contains an easy to read and useguide to Python programming and development. This condensed code and syntaxreference presents the Python language in a well-organized format designed tobe used time and again. You won't find jargon, bloated samples, case studies, or history of Hello Worldand computer theory in this handy reference. This Python syntax reference ispacked with useful information and is a must-have for any Python developer. 
546 |a English. 
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 Python.  |2 bisacsh 
650 7 |a Python (Computer program language)  |2 fast 
773 0 |t Springer eBooks 
776 0 8 |i Printed edition:  |z 9781430264781 
830 0 |a Expert's voice in Python. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781430264781/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH28324625 
938 |a Books 24x7  |b B247  |n bks00062126 
938 |a Baker and Taylor  |b BTCP  |n BK0014573854 
938 |a Coutts Information Services  |b COUT  |n 27172327 
938 |a EBL - Ebook Library  |b EBLB  |n EBL1694222 
938 |a ebrary  |b EBRY  |n ebr10845517 
938 |a EBSCOhost  |b EBSC  |n 1174088 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis28233740 
938 |a YBP Library Services  |b YANK  |n 11694397 
994 |a 92  |b IZTAP