會員登入
|
加入會員
|
會員專區
|
購物車
|
自資出版
|
電子書城
|
客服中心
文學小說
商管創投
人文藝坊
勵志養生
進修學習
科學工程
家庭親子
玩樂天地
書名
出版社
作者
isbn
編號
英語會話
|
成交的秘密
|
霹靂影音寫真特典
|
TCP/IP網路通訊協定(第二版)
.
Learning P
文學小說
文學
|
小說
商管創投
財經投資
|
行銷企管
人文藝坊
宗教、哲學
社會、人文、史地
藝術、美學
|
電影戲劇
勵志養生
醫療、保健
料理、生活百科
教育、心理、勵志
進修學習
電腦與網路
|
語言工具
雜誌、期刊
|
軍政、法律
參考、考試、教科用書
科學工程
科學、自然
|
工業、工程
家庭親子
家庭、親子、人際
青少年、童書
玩樂天地
旅遊、地圖
|
休閒娛樂
漫畫、插圖
|
限制級
Programming Python, 2nd Edition (Includes CD-ROM)
作者:
Mark Lutz
分類:
電腦與網路
/
網路
出版社:
美商歐萊禮英文書
出版日期:2001/3/1
ISBN:0596000855
書籍編號:bu0027861
頁數:1256
定價:
1930
元
特別會員價:
95
折
1834
元
書價若有異動,以出版社實際定價為準
暫停販售
暫無供應商:尋找供貨商中(也有可能出版社已結束)。
團購數最低為 15 本以上
評價數:
(請將滑鼠移至星星處進行評價)
目前平均評價:
文字連結
複製語法
Programming Python, 2nd Edition (Includes CD-ROM)
圖片連結
複製語法
分
享
內容簡介
同類推薦
內容簡介
Programming Python, 2nd Edition, focuses on advanced uses of the Python programming/scripting language, which has evolved from an emerging language of interest primarily to pioneers, to a widely accepted tool that traditional programmers use for real day-to-day development tasks. With Python, you can do almost anything you can do with C++; but Python is an interpreted language designed for rapid application development and deployment. Among other things, Python supports object-oriented programming; a remarkably simple, readable, and maintainable syntax; integration with C components; and a vast collection of pre-coded interfaces and utilities. As Python has grown to embrace developers on a number of different platforms (Unix, Linux, Windows, Mac), companies have taken notice and are adopting Python for their products. It has shown up animating the latest Star Wars movie, serving up maps and directories on the Internet, guiding users through Linux installations, testing chips and boards, managing Internet discussion forums, scripting online games, and even scripting wireless products. Programming Python, 2nd Edition, is the most comprehensive resource for advanced Python programmers available today. Reviewed and endorsed by Python creator Guido van Rossum, who also provides the foreword, this book zeroes in on real-world Python applications. It's been updated for Python 2.0 and covers Internet scripting, systems programming, Tkinter GUIs, C integration domains, and new Python tools and applications. Among them: IDLE, JYthon, Active Scripting and COM extensions, Zope, PSP server pages, restricted execution mode, the HTMLgen and SWIG code generators, thread support, CGI and Internet protocol modules. Such applications are the heart and soul of this second edition. Veteran O'Reilly author Mark Lutz has included a platform-neutral CD-ROM with book examples and various Python-related packages, including the full Python 2.0 source code distribution.
目錄
Foreword
Preface for the Second Edition
1. Introducing Python
The Life of Python The Compulsory Features List What's Python Good For? What's Python Not Good For?
I. System Interfaces
2. System Tools
Why Python Here? System Scripting Overview The sys Module The os Module Script Execution Context Current Working Directory Command-Line Arguments Shell Environment Variables Standard Streams File Tools Directory Tools
3. Parallel System Tools
Forking Processes Threads Program Exits Interprocess Communication Pipes Signals Launching Programs on Windows Other System Tools
4. Larger System ExamplesI
Splitting and Joining Files Generating Forward-Link Web Pages A Regression Test Script Packing and Unpacking Files User-Friendly Program Launchers
5. Larger System Examples II
Fixing DOS Line Ends Fixing DOS Filenames Searching Directory Trees Visitor: Walking Trees Generically Copying Directory Trees Deleting Directory Trees Comparing Directory Trees
II. GUI Programming
6. Graphical User Interfaces
Python GUI Development Options Tkinter Overview Climbing the GUI Learning Curve The End of the Tutorial Python/Tkinter for Tcl/Tk Converts
7. A Tkinter Tour, Part 1
Configuring Widget Appearance Toplevel Windows Dialogs Binding Events Message and Entry Checkbutton, Radiobutton, and Scale Running GUI Code Three Ways Images
8. A Tkinter Tour, Part 2
Menus Listboxes and Scrollbars Text Canvas Grids Time Tools, Threads, and Animation The End of the Tour The PyDemos and PyGadgets Launchers
9. Larger GUI Examples
Advanced GUI Coding Techniques Complete Program Examples PyEdit: A Text Editor Program/Object PyView: An Image and Notes Slideshow PyDraw: Painting and Moving Graphics PyClock: An Analog/Digital Clock Widget PyToe: A Tic-Tac-Toe Game Widget Where to Go from Here
III. Internet Scripting
10. Network Scripting
Plumbing the Internet Socket Programming Handling Multiple Clients A Simple Python File Server
11. Client-Side Scripting
Transferring Files over the Net Processing Internet Email The PyMailGui Email Client Other Client-Side Tools
12. Server-Side Scripting
What's a Server-Side CGI Script? Climbing the CGI Learning Curve The Hello World Selector Coding for Maintainability More on HTML and URL Escapes Sending Files to Clients and Servers
13. Larger Web Site Examples I
The PyMailCgi Web Site The Root Page Sending Mail by SMTP Reading POP Email Utility Modules CGI Script Trade-offs
14. Larger Web Site Examples II
The PyErrata Web Site The Root Page Browsing PyErrata Reports Submitting PyErrata Reports PyErrata Database Interfaces Administrative Tools Designing for Reuse and Growth
15. Advanced Internet Topics
Zope: A Web Publishing Framework HTMLgen: Web Pages from Objects JPython ( Jython): Python for Java Grail: A Python-Based Web Browser Python Restricted Execution Mode XML Processing Tools Windows Web Scripting Extensions Python Server Pages Rolling Your Own Servers in Python
IV. Assorted Topics
16. Databases and Persistence
Persistence Options in Python DBM Files Pickled Objects Shelve Files SQL Database Interfaces PyForm: A Persistent Object Viewer
17. Data Structures
Implementing Stacks Implementing Sets Binary Search Trees Graph Searching Reversing Sequences Permuting Sequences Sorting Sequences Data Structures Versus Python Built-ins PyTree: A Generic Tree Object Viewer
18. Text and Language
Strategies for Parsing Text in Python String Module Utilities Regular Expression Matching Parser Generators Hand-Coded Parsers PyCalc: A Calculator Program/Object
V. Integration
19. Extending Python
C Extensions Overview A Simple C Extension Module The SWIG Integration Code Generator Wrapping C Environment Calls A C Extension Module String Stack A C Extension Type String Stack Wrapping C++ Classes with SWIG
20. Embedding Python
C Embedding API Overview Basic Embedding Techniques Registering Callback Handler Objects Using Python Classes in C ppembed: A High-Level Embedding API Other Integration Topics
VI. The End
21. Conclusion: Python and the Development Cycle
"Something's Wrong with the Way We Program Computers" The "Gilligan Factor" Doing the Right Thing Enter Python But What About That Bottleneck? On Sinking the Titanic So What's Python: The Sequel In the Final Analysis... Postscript to the Second Edition
A. Recent Python Changes
B. Pragmatics
C. Python Versus C++
Index
作者簡介
Mark Lutz
Mark Lutz is a Python trainer, writer, and software developer, and one of the primary figures in the Python community. He is the author of Programming Python and Python Pocket Reference, and coauthor of Learning Python. Mark has been involved with Python since 1992 and began teaching Python classes in 1997. In addition, he holds B.S. and M.S. degrees in computer science from the University of Wisconsin, and has worked on compilers, programming tools, scripting applications, and assorted client/server systems. Mark can be reached by email at lutz@rmi.net, or on the web at http://rmi.net/~lutz.
混合雲安全架構|零信
WordPress
建構多租戶SaaS架
Docker建置與執
網站擷取|使用Pyt
想要 SSR?快使用
解密搜尋引擎:分詞技
圖解雲端運算|概念、
底層都完全了解 -
究極Web資安心智圖
Q1:若我已報名付了1000元訂金,接下來我要做什麼? A:感謝您報名,後續相關事情及服務我們會以e-mail和電話跟您聯絡. 您也可以主動來信(andy@book4u.com.tw)詢問。謝謝! Q2:我本身並沒有產品和服務,也沒什麼實務上的經驗,那又能如何賺錢呢?這個課程真的有實際成效嗎? A:我們這個課程共有11項贈品,其中第2項贈品便是資訊產品創造藍圖,它將教您如何用最簡潔而快速的方法創出屬於您自己的資訊產品。一般的課程大多是教您如何捕魚,但多數的成功致富者,其成功的關鍵卻不是仰賴捕魚技術,而是仰賴借力之術,因為唯有借力才能無中生有!才能快速成長!也才能快速致富!本課程3天共有三套樣版,其中一套樣版便是教您打造在沒有任何商品與服務,也沒有任何資源的情況下,就能快速借力致富的樣版!本課程二位講師都是白手起家,對於沒有實務經驗的新手會格外用心,請放心。 Q3:請問贈品中魚池矩陣直效聯盟VVIP是什麼? A:這是一個強大的系統,而我們送的是體驗版,會提供你Email追客系統。國外有一種函授課程,亦即每幾天發一個課程給學員, 就是用EMAIL追客系統來實踐。EMAIL追客系統簡單的說就是今天有一個客戶在你的網站上購買產品或註冊,系統會自動回覆一封確認信,之後你可以自行設計發送內容和發信時間一次一對多發給客戶,而且每封信還會帶入客戶本身的姓名。讓客戶以為是我們專門為客戶所量身訂作的信件。所以Email追客系統可以讓你培養跟客戶的信任感,進而成交。 Q4:請問贈品中資訊產品創造藍圖是什麼? A:這是一位叫林星?老師的課程,課程售價是9800元,現在免費送給你。此課程包含: ● 何謂資訊型產品? ● 資訊型產品的種類大解析!以及如何組織你的資訊型產品賺錢? ● 如何找到你的利基市場? ● 為什麼錯的利基市場,再好的產品與行銷也很難有效! ● 29個國外已經證實能讓你賺到錢的利基市場! ● 如何確保你做出來的產品客戶會很想購買?以及實際可執行的步驟! ● 創造資訊型產品計劃書 ● 15個步驟建立你的資訊型產品事業 ● E-mail精準行銷的10個法則 ● 10個別人沒有告訴你的有效文案撰寫法則 Q5:請問贈品中自動財富系統 6片DVD是什麼? A:此6片DVD定價3200元。內容為《借力淘金!最吸利的鈔級魚池賺錢術》作者之一王紫杰所錄製的DVD,內容為有關網路行銷的知識和技巧,非常豐富且實用,免費送給您。
為了保障您的權益,新絲路網路書店所購買的商品均享有到貨七天的鑑賞期(含例假日)。退回之商品必須於鑑賞期內寄回(以郵戳或收執聯為憑),且商品必須是全新狀態與完整包裝(商品、附件、內外包裝、隨貨文件、贈品等),否則恕不接受退貨。