- 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.
- 計(jì)算機(jī)圖形學(xué)編程(使用OpenGL和C++)(第2版)
- PyTorch自動(dòng)駕駛視覺(jué)感知算法實(shí)戰(zhàn)
- SQL學(xué)習(xí)指南(第3版)
- FreeSWITCH 1.6 Cookbook
- Git高手之路
- 信息安全技術(shù)
- PhoneGap:Beginner's Guide(Third Edition)
- Unity 5 for Android Essentials
- Julia高性能科學(xué)計(jì)算(第2版)
- Building Wireless Sensor Networks Using Arduino
- 打開Go語(yǔ)言之門:入門、實(shí)戰(zhàn)與進(jìn)階
- Android群英傳
- 從零學(xué)Java設(shè)計(jì)模式
- 計(jì)算語(yǔ)言學(xué)導(dǎo)論
- Java EE輕量級(jí)解決方案:S2SH