- 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.
- 在最好的年紀學Python:小學生趣味編程
- C和C++安全編碼(原書第2版)
- Getting Started with CreateJS
- 精通軟件性能測試與LoadRunner實戰(第2版)
- C語言從入門到精通(第4版)
- Learning ArcGIS Pro
- Android 應用案例開發大全(第3版)
- QGIS:Becoming a GIS Power User
- Swift語言實戰精講
- C語言程序設計
- Advanced Express Web Application Development
- PHP+Ajax+jQuery網站開發項目式教程
- Mastering ArcGIS Enterprise Administration
- C專家編程
- 運維前線:一線運維專家的運維方法、技巧與實踐