- Python for Secret Agents:Volume II
- Steven Lott
- 208字
- 2021-07-30 09:59:33
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, package names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
from fractions import Fraction p = 0 for i in range(1, 2000): p += Fraction(1, i**2) print( (p*6)**Fraction(1/2) )
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
from fractions import Fraction
p = 0
for i in range(1, 2000):
p += Fraction(1, i**2)
print( (p*6)**Fraction(1/2) )
Any command-line input or output is written as follows:
$ python3.4 -m doctest ourfile.py
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: "Clicking the Next button moves you to the next screen."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Boost.Asio C++ Network Programming(Second Edition)
- Vue.js 3.x快速入門
- Visual C++程序設計學習筆記
- OpenStack Cloud Computing Cookbook(Fourth Edition)
- Hadoop+Spark大數據分析實戰
- C語言程序設計立體化案例教程
- Linux環境編程:從應用到內核
- Python算法從菜鳥到達人
- Swift Playgrounds少兒趣編程
- Lighttpd源碼分析
- CoffeeScript Application Development Cookbook
- Arduino Wearable Projects
- Drupal 8 Development Cookbook(Second Edition)
- Keil Cx51 V7.0單片機高級語言編程與μVision2應用實踐
- jQuery Mobile Web Development Essentials(Second Edition)