- Python Essentials
- Steven F. Lott
- 265字
- 2021-07-16 13:53:10
Summary
We've looked at some core data types available in Python. We've looked at five different kinds of numbers, including integers, floating-point, complex, Fraction
and Decimal
. Each fills a different niche. Three of these are built-in, the other two must be imported from the standard library.
We've also looked at three different kinds of collections. The tuple
is a simple sequence of items with relatively few methods. str
is a Unicode string, which has several methods for creating new strings as transformations of existing strings. bytes
is a byte string, which also has a variety of methods. We can decode bytes to create Unicode strings. We can encode Unicode strings into bytes.
We've touched on how the import
statement is used to introduce new types and new modules. This will add features from the standard library.
We've also looked at a number of functions to convert various numeric types. Many of these functions also convert strings to numbers. We'll make heavy use of int()
and float()
to convert strings to numbers. The reverse—converting numbers to strings—can be done with the str()
function. It can be done better, however, with the formatting tools we'll look at in the next chapter.
In Chapter 3, Expressions and Output, we'll build on these basic concepts. We'll look in more depth at Python language syntax. We'll also look at functions for creating nicely formatted output. This will allow us to write simple programs. In Chapter 4, Variables, Assignment and Scoping Rules, we'll add even more essential language features so that we can write more sophisticated programs.
- 一步一步學Spring Boot 2:微服務項目實戰
- 軟件項目管理(第2版)
- Mastering RabbitMQ
- Oracle從新手到高手
- Architecting the Industrial Internet
- PyTorch Artificial Intelligence Fundamentals
- Learning Linux Binary Analysis
- QGIS:Becoming a GIS Power User
- Python機器學習基礎教程
- Getting Started with Nano Server
- HTML5+CSS3+JavaScript 從入門到項目實踐(超值版)
- Practical GIS
- Python預測分析與機器學習
- Python第三方庫開發應用實戰
- Java自然語言處理(原書第2版)