• Complain

Harry Yoon - Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3)

Here you can read online Harry Yoon - Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3) full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2022, publisher: Coding Books Press, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Harry Yoon Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3)
  • Book:
    Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3)
  • Author:
  • Publisher:
    Coding Books Press
  • Genre:
  • Year:
    2022
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3): summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3)" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Learn Python in a Weekend!
This book is an (informal) language reference on the Python programming language. Python is one of the most widely used languages in many different application areas. We go through all essential features of the modern Python programming language, including the match statement (3.10) and exception groups (3.11).
Although the book is written as a reference, you can read it more or less from beginning to end and you should be able to get the overall picture of the Python language if you have some prior experience with programming in Python.
The book covers
  • Python program top-level components.
  • Python package/module import system.
  • Builtin type hierarchy. Data model.
  • List, map, tuple literals.
  • Expressions. Simple and compound statements.
  • Function, class definitions.
  • Object oriented programming in Python.
  • Structural pattern matching.
  • Coroutines, async/await.

Order your copy today and learn all about Python this weekend! :)

Harry Yoon: author's other books


Who wrote Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3)? Find out the surname, the name of the author of the book and a list of all author's works by series.

Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3) — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3)" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Table of Contents
Copyright

Python Mini Reference:
A Quick Guide to the Modern Python Programming Language

2022 Coding Books Press

All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews.

Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book.

Published: October 2022

Harry Yoon
San Diego, California

Preface

Python is a dynamic language.

It means many different things.It means that the language is more flexible.It means that Python is an easier language to program with.You can quickly write a simple program without having to go through too much "rituals",compared to many other programming languages.Python scripts tend to require less boilerplate code.Python gives you more freedom.

On the other hand,it also means that the language is less safe, and more error prone.It means that it is harder to build a larger system with Python.It means that software written in Python is generally harder to maintain over a longer period of time.

The key to using Python effectively isto understand this tradeoff.Python can be an ideal language, for instance,for quick prototyping, or "scripting".On the flip side,Python is not as much used for the "enterprise software" development.

Python is a general purpose programming language.Python is used in many different application areas,from system administration tasks to web application development.Python is now one of the most widely used programming languagesfor scientists,who have traditionally been using more high-level tools like Matlab.Python provides an easier "upgrade" pathto these "non-professional" programmers.Now, Python is becoming the language for machine learningand data science.

Python is beginner-friendly.In fact, it seems to be the most favorite first languagefor beginning programmers, even more so than JavaScript.

It should be noted, however,that Python is not a simple language.Over the past 30 years or so of its history,it has gone through a lot of big and small changes.It is still easy to get started with programming in Python.Nonetheless,once you reach a certain point,say, from the advanced beginners to intermediate level,its complexity can be overwhelming.

This book will give you a broadand sanitized overview of the Python language,as of its most recent incarnation (e.g., 3.10 and 3.11).This book can be usefulto anyone who has been dabbling with Python without solid foundation.It can also be usefulto the people who have experience with other programming languagesand want to get some quick overview of the language.

This book is written as an (informal) language reference.The goal of this book is notto teach you how to program effectively in Python,but rather to provide a concise summary of the language grammar.If you have some basic programming knowledge,you can read this bookmore or less from beginning to end,and you should be able to get the overall understanding of the Python programming language quickly,regardless of your particular programming background.

The book is written for a broad audience,but one caveat is thatthere are a fair amount of cross references, unlike in the books written in a tutorial style.If you have no prior experience with programming in Python or any similar language,then you may find it a little difficult to go through some parts of the book.This book is not for complete beginners.It skims through some elementary concepts in the beginning,for the sake of brevity,so that we can focus more on the intermediate and advanced level topics.

This book is not an authoritative language reference.For that, we recommend the readers to refer to the official language specification.

1. Introduction

This book will give you an overview of the Python languagegrammar.

It appears thatthe line between the programming language properand the standard library is becoming more blurred these days.Although it is not our goal to go through the Python standard library(which is well beyond the scope of this book),we will touch upon a few important concepts from the standard library modulesthat are considered more or less part of the language.

This "reference" starts with the most boring part of Python. If you plan to read the book from beginning to end,say, rather than using it just as a quick reference,then you can skip the first few chapters in your first reading,and come back to them later when needed.

The term "program" means different things in different contexts,and across different programming languages.We start with somewhat formal explanations of,e.g., in the Python interpreter.

Python programs are logically organized into,which we take a look at next.A module corresponds to a file in a physical file system,and modules, and including package modules,are the basic units of code reuse and sharing in Python.

Next, we briefly go through some of the lexical elementsof the .There are some small variations across different programming languages,but their lexical compositions are rather similar,and Python is no different.This part can be skipped in your "reading".

Generally speaking,a program consists of code and data.Code refers to instructions.Data in Python is represented by objects.The object in Python is a fundamental component.Everythingwhich we deal with in a Python program is objects.We start the main part of the bookby introducing various important conceptsrelated to the .

Although Python uses a dynamic type system,the types still play the foundational roles in the Python programming language.We first go through some of thein Python.Python includes quite a few builtin types,and this reference touches on only some of them.As indicated, this is generally true across all topics discussed in this reference.Completeness is not the goal of this mini reference.

Python also includes a few.Advanced types,e.g., functions and classes, in particular,are explained in detail later in the book.

As with any imperative programming language,Python has expressions and statements.An expression prescribes how to compute a valueusing other expressions and values.Python supports most offound in other imperative languages.If you are coming from other procedural programming language background,you can skim through most of this part.

A statement is an instruction.Statements control the flow of a program toattain the desired goal.In Python,there are two kinds of statements,.Compound, or complex, statementscan "include" other simple or compound statements.

Simple statements include.

One of the most significant changes to Pythonfor the last 30+ years has been the addition ofto the language, as of Python 3.10 (2021).Pattern matching was first popularized by functional programming languages like Haskell,and it is now becoming more and more widely availableacross many different programming languageslike C#, rust, swift, scala, and (yes) even Java.

As we more adopt this feature, as a community,pattern matching will likely change how we program in Pythonin the coming years.Although it is currently supported only in the context ofthe ,it is conceivable, and in fact expected,that pattern matching will be available more broadly across the languagein the near future,considering its simplicity, elegance, and power.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3)»

Look at similar books to Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3). We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3)»

Discussion, reviews of the book Python Mini Reference 2022: A Quick Guide to the Modern Python Programming Language for Busy Coders (A Hitchhikers Guide to the Modern Programming Languages Book 3) and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.