September 2021
Beginner to intermediate
256 pages
6h 48m
English
The most important property of a program is whether it accomplishes the intention of its user.
C.A.R. Hoare
In This Chapter
This chapter covers some Python Standard Library components that are powerful tools for both data science and general Python use. It starts with various ways to sort data and then moves to reading and writing files using context managers. Next, this chapter looks at representing time with datetime objects. Finally, this chapter covers searching text using the powerful regular expression library. It is important to have at least a high-level understanding of these topics as they are all highly leveraged in production programming. ...