- Functional Python Programming
- Steven F. Lott
- 224字
- 2021-08-27 19:20:19
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Python has other statements, such as global or nonlocal, which modify the rules for variables in a particular namespace."
A block of code is set as follows:
s = 0 for n in range(1, 10): if n % 3 == 0 or n % 5 == 0: s += n print(s)
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
s = 0 for n in range(1, 10): if n % 3 == 0 or n % 5 == 0: s += n print(s)
Any command-line input or output is written as follows:
$ pip install pillow beautifulsoup4 PyMonad
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "For our purposes, we will distinguish between only two of the many paradigms: functional programming and imperative programming."
- C語言程序設計案例教程
- Java程序設計與開發
- Learning RabbitMQ
- JMeter 性能測試實戰(第2版)
- Python Deep Learning
- Java編程指南:基礎知識、類庫應用及案例設計
- HTML 5與CSS 3權威指南(第3版·上冊)
- 智能手機故障檢測與維修從入門到精通
- OpenMP核心技術指南
- 零基礎學C語言(第4版)
- Java程序設計教程
- Microsoft Exchange Server 2016 PowerShell Cookbook(Fourth Edition)
- Python物理建模初學者指南(第2版)
- 零基礎學SQL(升級版)
- Spring Boot學習指南:構建云原生Java和Kotlin應用程序