Python Programming: Testing & Debugging, Pytest, Unittest, Pdb (eBook)

Python Programming: Testing & Debugging, Pytest, Unittest, Pdb (eBook)

e3
e3
Prezzo:
€ 33,99
Compra EPUB
Prezzo:
€ 33,99
Compra EPUB

Formato

:
EPUB
Cloud: Scopri di più
Compatibilità: Tutti i dispositivi
Lingua: Inglese
Editore: e3
Codice EAN: 9798231162802
Anno pubblicazione: 2025
Scopri QUI come leggere i tuoi eBook
Abbonati a Kobo Plus per avere accesso illimitato a migliaia di eBook

Note legali

NOTE LEGALI

a) Garanzia legale, Pagamenti, Consegne, Diritto di recesso
b) Informazioni sul prezzo
Il prezzo barrato corrisponde al prezzo di vendita al pubblico al lordo di IVA e al netto delle spese di spedizione
Il prezzo barrato dei libri italiani corrisponde al prezzo di copertina.
I libri in inglese di Libraccio sono di provenienza americana o inglese.
Libraccio riceve quotidianamente i prodotti dagli USA e dalla Gran Bretagna, pagandone i costi di importazione, spedizione in Italia ecc.
Il prezzo in EURO è fissato da Libraccio e, in alcuni casi, può discostarsi leggermente dal cambio dollaro/euro o sterlina/euro del giorno. Il prezzo che pagherai sarà quello in EURO al momento della conferma dell'ordine.
In ogni caso potrai verificare la convenienza dei nostri prezzi rispetto ad altri siti italiani e, in moltissimi casi, anche rispetto all'acquisto su siti americani o inglesi.
c) Disponibilità
I termini relativi alla disponibilità dei prodotti sono indicati nelle Condizioni generali di vendita.

Disponibilità immediata
L'articolo è immediatamente disponibile presso Libraccio e saremo in grado di procedere con la spedizione entro un giorno lavorativo.
Nota: La disponibilità prevista fa riferimento a singole disponibilità.

Disponibile in giorni o settimane (ad es. "3-5-10 giorni", "4-5 settimane" )
L'articolo sarà disponibile entro le tempistiche indicate, necessarie per ricevere l'articolo dai nostri fornitori e preparare la spedizione.
Nota: La disponibilità prevista fa riferimento a singole disponibilità.

Prenotazione libri scolastici
Il servizio ti permette di prenotare libri scolastici nuovi che risultano non disponibili al momento dell'acquisto.

Attualmente non disponibile
L'articolo sarà disponibile ma non sappiamo ancora quando. Inserisci la tua mail dalla scheda prodotto attivando il servizio Libraccio “avvisami” e sarai contattato quando sarà ordinabile.

Difficile reperibilità
Abbiamo dei problemi nel reperire il prodotto. Il fornitore non ci dà informazioni sulla sua reperibilità, ma se desideri comunque effettuare l'ordine, cercheremo di averlo nei tempi indicati. Se non sarà possibile, ti avvertiremo via e-mail e l'ordine verrà cancellato.
Chiudi

Descrizione

Preface The world of software development is built upon two unshakable pillars: correctness and reliability. Writing code is only the beginning of the journey; ensuring that this code behaves as expected under all conditions is what distinguishes a working program from a trustworthy system. In Python programming, testing and debugging are not optional steps—they are integral practices that define the quality of the final product. This book, Python Programming: Testing & Debugging, was written with the goal of guiding programmers—whether beginners taking their first steps into structured testing or experienced developers refining their craft—through the essential tools and practices that transform ordinary scripts into dependable applications. The content of this book is structured around three fundamental components of Python's testing and debugging ecosystem: Pytest – a powerful, modern, and flexible framework that simplifies unit testing while supporting advanced features such as fixtures, parameterization, and plugins. Pytest has become the tool of choice for many Python developers, and this book explores its strengths from the basics to more sophisticated scenarios. Unittest – Python's built-in testing framework, which provides a solid, standardized foundation for writing test cases. By learning unittest, readers gain not only the ability to test effectively but also the benefit of understanding Python's philosophy of extensibility and convention-driven design. Pdb (Python Debugger) – a command-line tool that empowers developers to step into their code, inspect its state, and trace issues at runtime. Mastering Pdb helps programmers move beyond guesswork and into precise, efficient problem-solving. By weaving together these three strands—pytest, unittest, and pdb—this book provides a complete roadmap for developing resilient Python programs. Each chapter is crafted to balance explanation with practice: concepts are explained clearly, examples are chosen to be realistic and illustrative, and exercises are designed to challenge the reader to apply their knowledge in meaningful ways. The guiding philosophy throughout is that testing and debugging are not burdens to be endured, but skills to be embraced. They not only improve the quality of code but also enhance a programmer's confidence, efficiency, and creativity. With testing and debugging as companions, developers are free to experiment boldly, knowing that their safety net will catch errors before they cause harm. This book invites you to explore Python's rich ecosystem of testing and debugging tools, to practice their use, and to integrate them into your daily workflow. Whether you are building small scripts, large applications, or mission-critical systems, the practices you will learn here will serve you well throughout your programming journey. Author