- Learning Python
- Fabrizio Romano
- 211字
- 2021-07-30 09:41:52
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Open up a Python console, and type import this
."
A block of code is set as follows:
# we define a function, called local def local(): m = 7 print(m) m = 5 print(m)
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
# we define a function, called local def local(): m = 7 print(m) m = 5 print(m)
Any command-line input or output is written as follows:
>>> from math import factorial >>> factorial(5) 120
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "To open the console on Windows, go to the Start menu, choose Run, and type cmd
."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- 微服務設計(第2版)
- Boost.Asio C++ Network Programming(Second Edition)
- Maven Build Customization
- Implementing Cisco Networking Solutions
- Hands-On JavaScript High Performance
- 深度強化學習算法與實踐:基于PyTorch的實現
- Drupal 8 Configuration Management
- JavaCAPS基礎、應用與案例
- Go語言精進之路:從新手到高手的編程思想、方法和技巧(1)
- MySQL入門很輕松(微課超值版)
- UML2面向對象分析與設計(第2版)
- Mastering Adobe Captivate 7
- Node.js從入門到精通
- Web前端測試與集成:Jasmine/Selenium/Protractor/Jenkins的最佳實踐
- Mastering Unity 2017 Game Development with C#(Second Edition)