|In vendita nella categoria:
Ne hai uno da vendere?

Python for Everyone by Horstmann, Cay S., Necaise, Rance D.

Condizione:
Buone condizioni
Prezzo:
US $28,68
CircaEUR 26,39
Goditi i vantaggi. Restituzioni accettate.
Spedizione:
Oggetto che si trova a: Marion, Indiana, Stati Uniti
Consegna:
Consegna prevista tra il lun 10 giu e il mer 12 giu a 43230
I tempi di consegna previsti utilizzando il metodo proprietario di eBay, che è basato sulla vicinanza dell'acquirente rispetto al luogo in cui si trova l'oggetto, sul servizio di spedizione selezionato, sulla cronologia di spedizione del venditore e su altri fattori. I tempi di consegna possono variare, specialmente durante le festività.
Restituzioni:
Restituzioni entro 30 giorni. L'acquirente paga le spese di spedizione per la restituzione dell'oggetto. Vedi i dettagli- per maggiori informazioni sulle restituzioni
Pagamenti:
     

Fai shopping in tutta sicurezza

Garanzia cliente eBay
Se non ricevi l'oggetto che hai ordinato, riceverai il rimborso. 

Informazioni sul venditore

Registrato come venditore professionale
Il venditore si assume la piena responsabilità della messa in vendita dell'oggetto.
Numero oggetto eBay:225923845956
Ultimo aggiornamento: 05 giu 2024 00:33:35 CESTVedi tutte le revisioniVedi tutte le revisioni

Specifiche dell'oggetto

Condizione
Buone condizioni: Libro che è già stato letto ma è in buone condizioni. Mostra piccolissimi danni ...
Book Title
Python for Everyone
ISBN
9781119056553
Subject Area
Computers
Publication Name
Python for Everyone
Item Length
10 in
Publisher
Wiley & Sons, Incorporated, John
Subject
Programming Languages / Python
Publication Year
2016
Type
Textbook
Format
Trade Paperback
Language
English
Item Height
1 in
Author
Rancé D. Necaise, Cay S. Horstmann
Item Width
8 in
Item Weight
47.2 Oz
Number of Pages
752 Pages

Informazioni su questo prodotto

Product Information

With Wiley's Interactive Edition, you get all the benefits of a downloadable, reflowable eBook with added resources to make your study time more effective, including: * Lambda Expressions, Default & Static Method interfaces * Embedded Problem Solving Sections & How-To Guides * Worked Examples & Self-Check Exercises at the end of each chapter * Progressive Figures that trace code segments using color for easy recognition * Linked Programming Tips & Common Errors for programming best practices Cay Horstmann's Python for Everyone, Interactive Edition, 2nd Edition provides a comprehensive and approachable introduction to fundamental programming techniques and design skills, and helps students master basic concepts and become competent coders. The inclusion of advanced chapters makes the text suitable for a 2 or 3-term sequence, or as a comprehensive reference to programming in Python. Major rewrites and an updated visual design make this student-friendly text even more engaging. Filled with realistic programming examples, a great quantity and variety of homework assignments, and lab exercises that build student problem-solving abilities, it is no surprise Python for Everyone is the number one text for early objects in the Python market.

Product Identifiers

Publisher
Wiley & Sons, Incorporated, John
ISBN-10
1119056551
ISBN-13
9781119056553
eBay Product ID (ePID)
215980595

Product Key Features

Author
Rancé D. Necaise, Cay S. Horstmann
Publication Name
Python for Everyone
Format
Trade Paperback
Language
English
Subject
Programming Languages / Python
Publication Year
2016
Type
Textbook
Subject Area
Computers
Number of Pages
752 Pages

Dimensions

Item Length
10 in
Item Height
1 in
Item Width
8 in
Item Weight
47.2 Oz

Additional Product Features

Edition Number
2
LCCN
2016-427618
Intended Audience
College Audience
Lc Classification Number
Qa76.73.P98
Table of Content
Chapter 1: Introduction 1.1 Computer Programs 1.2 The Anatomy of a Computer 1.3 The Python Programming Language 1.4 Becoming Familiar with Your Programming Environment 1.5 Analyzing Your First Program 1.6 Errors 1.7 Problem Solving: Algorithm Design Chapter 2: Programming with Numbers and Strings 2.1 Variables 2.2 Arithmetic 2.3 Problem Solving: First Do It By Hand 2.4 Strings 2.5 Input and Output 2.6 Graphics: Simple Drawings Chapter 3: Decisions 3.1 The if Statement 3.2 Relational Operators 3.3 Nested Branches 3.4 Multiple Alternatives 3.5 Problem Solving: Flowcharts 3.6 Problem Solving: Test Cases 3.7 Boolean Variables and Operators 3.8 Analyzing Strings 3.9 Application: Input Validation Chapter 4: Loops 4.1 The while Loop 4.2 Problem Solving: Hand-Tracing 4.3 Application: Processing Sentinel Values 4.4 Problem Solving: Storyboards 4.5 Common Loop Algorithms 4.6 The for Loop 4.7 Nested Loops 4.8 Processing Strings 4.9 Application: Random Numbers and Simulations 4.10 Graphics: Digital Image Processing 4.11 Problem Solving: Solve a Simpler Problem First Chapter 5: Functions 5.1 Functions as Black Boxes 5.2 Implementing and Testing Functions 5.3 Parameter Passing 5.4 Return Values 5.5 Functions Without Return Values 5.6 Problem Solving: Reusable Functions 5.7 Problem Solving: Stepwise Refinement 5.8 Variable Scope 5.9 Graphics: Building an Image Processing Toolkit 5.10 Recursive Functions (Optional) Chapter 6: Lists 6.1 Basic Properties of Lists 6.2 List Operations 6.3 Common List Algorithms 6.4 Using Lists with Functions 6.5 Problem Solving: Adapting Algorithms 6.6 Problem Solving: Discovering Algorithms by Manipulating Physical Objects 6.7 Tables Chapter 7: Files and Exceptions 7.1 Reading and Writing Text Files 7.2 Text Input and Output 7.3 Command Line Arguments 7.4 Binary Files and Random Access 7.5 Exception Handling 7.6 Application: Handling Input Errors Chapter 8: Sets and Dictionaries 8.1 Sets 8.2 Dictionaries 8.3 Complex Structures Chapter 9: Objects and Classes 9.1 Object-Oriented Programming 9.2 Implementing a Simple Class 9.3 Specifying the Public Interface of a Class 9.4 Designing the Data Representation 9.5 Constructors 9.6 Implementing Methods 9.7 Testing a Class 9.8 Problem Solving: Tracing Objects 9.9 Problem Solving: Patterns for Object Data 9.10 Object References 9.11 Application: Writing a Fraction Class Chapter 10: Inheritance 10.1 Inheritance Hierarchies 10.2 Implementing Subclasses 10.3 Calling the Superclass Constructor 10.4 Overriding Methods 10.5 Polymorphism 10.6 Application: A Geometric Shape Class Hierarchy Chapter 11: RECURSION 11.1 Triangle Numbers Revisited 11.2 Problem Solving: Thinking Recursively 11.3 Recursive Helper Functions 11.4 The Efficiency of Recursion 11.5 Permutations 11.6 Backtracking 11.7 Mutual Recursion Chapter 12: Sorting and Searching 12.1 Selection Sort 12.2 Profiling the Selection Sort Algorithm 12.3 Analyzing the Performance of the Selection Sort Algorithm 12.4 Merge Sort 12.5 Analyzing the Merge Sort Algorithm 12.6 Searching 12.7 Problem Solving: Estimating the Running Time of an Algorithm APPENDIX A THE BASIC LATIN AND LATIN-1 SUBSETS OF UNICODE APPENDIX B PYTHON OPERATOR SUMMARY APPENDIX C PYTHON RESERVED WORD SUMMARY APPENDIX D THE PYTHON STANDARD LIBRARY APPENDIX E BINARY NUMBERS AND BIT OPERATIONS GLOSSARY INDEX CREDITS
Copyright Date
2016
Dewey Decimal
005.13/3
Dewey Edition
23
Illustrated
Yes

Descrizione dell'oggetto fatta dal venditore

Informazioni sul venditore professionale

Slingshot LP
Trennen Kidder
1500 S Western Ave
46953 Marion, IN
United States
Mostra Informazioni di contatto
:liamEmoc.serotskooblot@sredro
Certifico che tutte le mie attività di vendita saranno conformi alle leggi e ai regolamenti dell'Unione Europea.
Indiana Book Company

Indiana Book Company

99% di Feedback positivi
154 mila oggetti venduti
In genere risponde entro 24 ore

Valutazione dettagliata del venditore

Media degli ultimi 12 mesi

Descrizione
4.9
Spese spedizione
5.0
Tempi spedizione
5.0
Comunicazione
5.0
Registrato come venditore professionale

Feedback del venditore (25.014)

8***0 (440)- Feedback lasciato dall'acquirente.
Mese scorso
Acquisto verificato
A+ Fast Delivery
h***b (533)- Feedback lasciato dall'acquirente.
Mese scorso
Acquisto verificato
thanks
s***i (1332)- Feedback lasciato dall'acquirente.
Mese scorso
Acquisto verificato
Thanks.

Valutazioni e recensioni del prodotto

Ancora nessun punteggio o recensione