ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب Python Essential Reference

دانلود کتاب مرجع ضروری پایتون

Python Essential Reference

مشخصات کتاب

Python Essential Reference

دسته بندی: برنامه نویسی: زبان های برنامه نویسی
ویرایش: 3 
نویسندگان:   
سری:  
ISBN (شابک) : 0672328623, 9780672328626 
ناشر: Sams 
سال نشر: 2006 
تعداد صفحات: 644 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 4 مگابایت 

قیمت کتاب (تومان) : 34,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 9


در صورت تبدیل فایل کتاب Python Essential Reference به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب مرجع ضروری پایتون نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی در مورد کتاب مرجع ضروری پایتون

Python Essential Reference، 3rd Edition، یک مرجع جامع به زبان برنامه نویسی پایتون است. تمرکز این آخرین نسخه، افزودن پوشش ویژگی‌های مهم جدید و ماژول‌های کتابخانه جدید است که در طول پنج سال گذشته به زبان اضافه شده است. ویژگی‌های جدید تحت پوشش که به وضوح با سازماندهی مختصر نوشته شده است شامل کلاس‌های سبک جدید، یکپارچه‌سازی انواع و کلاس‌ها، xmlrpclip، intertools، bz2 و optparse است که آن را به‌روزترین کتاب پایتون در بازار تبدیل می‌کند.


توضیحاتی درمورد کتاب به خارجی

"Python Essential Reference, 3rd Edition, "is a comprehensive reference to the Python programming language. The focus of this latest edition is to add coverage of significant new features and new library modules added to the language over the past five years. Clearly written with concise organization, the new features covered include new style classes, unification of types and classes, xmlrpclip, intertools, bz2 and optparse, making it the most up-to-date Python book on the market.



فهرست مطالب

0672328623......Page 1
Table of Contents......Page 7
Introduction......Page 20
I: The Python Language......Page 22
Running Python......Page 24
Variables and Arithmetic Expressions......Page 25
Conditionals......Page 26
File Input and Output......Page 27
Strings......Page 28
Lists......Page 29
Tuples......Page 30
Dictionaries......Page 31
Iteration and Looping......Page 32
Functions......Page 33
Classes......Page 34
Exceptions......Page 35
Modules......Page 36
Getting Help......Page 37
Line Structure and Indentation......Page 38
Identifiers and Reserved Words......Page 39
Literals......Page 40
Operators, Delimiters, and Special Symbols......Page 42
Source Code Encoding......Page 43
Object Identity and Type......Page 46
Reference Counting and Garbage Collection......Page 47
References and Copies......Page 48
Built-in Types......Page 49
Special Methods......Page 64
Performance Considerations......Page 73
Operations on Numbers......Page 76
Operations on Sequences......Page 78
Operations on Sets......Page 82
Type Conversion......Page 83
Unicode Strings......Page 84
Order of Evaluation......Page 87
Loops and Iteration......Page 90
Exceptions......Page 92
Defining New Exceptions......Page 95
Assertions and _ _debug_ _......Page 96
Functions......Page 98
Parameter Passing and Return Values......Page 100
Scoping Rules......Page 101
The apply( ) Function......Page 102
map( ), zip( ), reduce( ), and filter()......Page 103
List Comprehensions......Page 104
Generators and yield......Page 105
Generator Expressions......Page 106
Function Decorators......Page 107
eval( ), exec, execfile( ), and compile( )......Page 108
The class Statement......Page 110
Class Instances......Page 112
Inheritance......Page 113
Polymorphism......Page 115
Operator Overloading......Page 116
Types and Class Membership Tests......Page 117
Metaclasses......Page 118
Modules......Page 122
Module Loading and Compilation......Page 124
Module Reloading......Page 125
Packages......Page 126
Reading Options and Environment Variables......Page 130
Files and File Objects......Page 131
Standard Input, Output, and Error......Page 133
The print Statement......Page 134
Persistence......Page 135
Unicode I/O......Page 136
Interpreter Options and Environment......Page 142
Interactive Sessions......Page 144
Program Termination......Page 145
II: The Python Library......Page 148
11 Introduction to the Python Standard Library......Page 150
Preview......Page 151
Built-in Functions......Page 154
Built-in Exceptions......Page 163
code......Page 168
copy......Page 170
copy_reg......Page 171
_ _future_ _......Page 172
gc......Page 173
inspect......Page 174
marshal......Page 178
new......Page 179
operator......Page 180
pickle and cPickle......Page 181
site......Page 184
sys......Page 185
traceback......Page 189
types......Page 191
warnings......Page 193
weakref......Page 195
UserDict, UserList, and UserString......Page 197
cmath......Page 200
decimal......Page 201
math......Page 209
random......Page 210
array......Page 214
collections......Page 216
heapq......Page 217
itertools......Page 218
codecs......Page 222
difflib......Page 230
gettext......Page 232
re......Page 236
string......Page 243
StringIO and cStringIO......Page 246
struct......Page 247
textwrap......Page 249
unicodedata......Page 250
Introduction......Page 256
bsddb......Page 257
dbhash......Page 258
dumbdbm......Page 259
gdbm......Page 260
shelve......Page 261
whichdb......Page 262
bz2......Page 264
csv......Page 265
filecmp......Page 268
fileinput......Page 270
fnmatch......Page 271
gzip......Page 272
tarfile......Page 273
zipfile......Page 277
zlib......Page 280
commands......Page 284
crypt......Page 285
datetime......Page 286
dl......Page 292
errno......Page 294
fcntl......Page 299
getopt......Page 301
grp......Page 302
locale......Page 303
logging......Page 306
mmap......Page 317
msvcrt......Page 320
optparse......Page 321
os......Page 327
os.path......Page 345
platform......Page 348
popen2......Page 350
pwd......Page 351
resource......Page 352
shutil......Page 354
signal......Page 355
stat......Page 357
statvfs......Page 358
subprocess......Page 359
tempfile......Page 361
termios......Page 363
time......Page 367
_winreg......Page 370
Python Threads......Page 374
thread......Page 375
threading......Page 377
Queue......Page 382
Introduction......Page 384
asynchat......Page 387
asyncore......Page 389
select......Page 393
socket......Page 394
SocketServer......Page 407
BaseHTTPServer......Page 412
cgi......Page 415
cgitb......Page 420
Cookie......Page 421
cookielib......Page 424
DocXMLRPCServer......Page 429
encodings.idna......Page 430
ftplib......Page 431
httplib......Page 434
nntplib......Page 441
poplib......Page 445
SimpleHTTPServer......Page 447
SimpleXMLRPCServer......Page 448
smtplib......Page 451
urllib......Page 452
urllib2......Page 454
urlparse......Page 459
webbrowser......Page 460
xmlrpclib......Page 461
base64......Page 464
binascii......Page 466
email......Page 468
HTMLParser......Page 480
mailcap......Page 482
mimetypes......Page 483
quopri......Page 488
rfc822......Page 489
xdrlib......Page 492
xml.dom......Page 496
xml.dom.minidom......Page 500
xml.sax......Page 506
xml.sax.saxutils......Page 512
hmac......Page 514
md5......Page 515
sha......Page 516
Python Services......Page 518
Network......Page 519
Multimedia Services......Page 520
Miscellaneous......Page 521
doctest......Page 522
hotshot......Page 524
pdb......Page 525
profile......Page 529
pstats......Page 530
timeit......Page 531
unittest......Page 532
III: Extending and Embedding......Page 536
Extension Module Example......Page 538
Compilation of Extensions......Page 540
Converting Data from Python to C......Page 542
Converting Data from C to Python......Page 545
Error Handling......Page 547
Reference Counting......Page 550
Calling Python from C......Page 551
Abstract Object Layer......Page 552
Low-level Functions on Built-in Types......Page 556
Threads......Page 562
Embedding......Page 563
Extension Building Tools......Page 565
Index......Page 568
A......Page 569
B......Page 571
C......Page 573
D......Page 579
E......Page 583
F......Page 587
G......Page 591
H......Page 595
I......Page 598
J-K......Page 602
L......Page 603
M......Page 606
N......Page 609
O......Page 611
P......Page 613
Q......Page 621
R......Page 622
S......Page 626
T......Page 635
U......Page 638
V......Page 641
W......Page 642
X-Y-Z......Page 643




نظرات کاربران