Good book "Introduction to Python3", N selection (N = 1) where the explanation has failed.

Overview

I think the following books are good books. This is the first book I read while studying Python. This book was a good book, so I feel like I'm familiar with Python (until now). Thanks.

** "Introduction to Python 3" O'Reilly Japan (February 3, 2017, first edition, sixth edition) **

here, I think that the explanation has failed for a moment, so I will describe it. I've forgotten quite a bit, but when I notice it, I'll add it to this article.

Failure 1

Excerpt quote

Below, the relevant book is quoted

Why do you need an empty string? If you want to assemble a new string from another string, you first need a blank note.

>>> bottles = 99 >>> base = '' \ >>> base + ='current inventory:' # inventory >>> base += str(bottles) >>> base 'current inventory: 99'

Description Failure details

In the case of the above example, ** I think it is not necessary to have an empty string. ** ** Below ↓.

>>> bottles = 99
>>> base = 'current inventory: ' #stock
>>> base += str(bottles)
>>> base
'current inventory: 99'

Proposal for improvement of explanation

I don't know what I want to explain. .. .. (I will omit the improvement plan.)

Summary

If you have any comments, please let us know. : candy: I just wrote an article (like a good idea?) To get more familiar with good books. Also, if I find something, I will add it. Even within the range I have noticed so far, I think there were certainly some.

Recommended Posts

Good book "Introduction to Python3", N selection (N = 1) where the explanation has failed.
[Introduction to Python] Thorough explanation of the character string type used in Python!
Introduction to Python Let's prepare the development environment
[Introduction to Python3 Day 20] Chapter 9 Unraveling the Web (9.1-9.4)
Introduction to Python with Atom (on the way)
[Introduction to Algorithm] Find the shortest path [Python3]
Try to solve the programming challenge book with python3
[Introduction to Python] How to iterate with the range function?
[Introduction to Udemy Python3 + Application] 27. How to use the dictionary
[Introduction to Udemy Python3 + Application] 30. How to use the set
[Introduction to Python] How to stop the loop using break?
[Introduction to Python] Basic usage of the library matplotlib
[Technical book] Introduction to data analysis using Python -1 Chapter Introduction-
Introduction to Python language
Introduction to OpenCV (python)-(2)
Implemented the algorithm of "Algorithm Picture Book" in Python3 (selection sort)
[Introduction to Python] How to get data with the listdir function
Chapter 1 Introduction to Python Cut out only the good points of deep learning made from scratch
Introduction to Python Django (2) Win
Introduction to serial communication [Python]
[Introduction to Python] <list> [edit: 2020/02/22]
Introduction to Python (Python version APG4b)
An introduction to Python Programming
Introduction to Python For, While
I tried to solve the ant book beginner's edition with python
[Introduction to Python] What is the most powerful programming language now?
[Introduction to Python] How to split a character string with the split function
[Python] PCA scratch in the example of "Introduction to multivariate analysis"
[Introduction to Python] I compared the naming conventions of C # and Python.
[Introduction to Python] How to use the in operator in a for statement?
From the introduction of JUMAN ++ to morphological analysis of Japanese with Python
[Introduction to Python] How to use the Boolean operator (and ・ or ・ not)