- IPython Notebook Essentials
- L. Felipe Martins
- 222字
- 2021-08-05 17:17:53
Conventions
In this book, you will find a number of styles of text 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: "The simplest way to run IPython is to issue the ipython
command in a terminal window."
A block of code is set as follows:
temp_coffee = 185. temp_cream = 40. vol_coffee = 8. vol_cream = 1. initial_temp_mix_at_shop = temp_mixture(temp_coffee, vol_coffee, temp_cream, vol_cream) temperatures_mix_at_shop = cooling_law(initial_temp_mix_at_shop, times) temperatures_mix_at_shop
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
[default]
temp_coffee = 185.
temp_cream = 40.
vol_coffee = 8.
vol_cream = 1.
initial_temp_mix_at_shop = temp_mixture(temp_coffee, vol_coffee, temp_cream, vol_cream)
temperatures_mix_at_shop = cooling_law(initial_temp_mix_at_shop, times)
temperatures_mix_at_shop
Any command-line input or output is written as follows:
ipython notebook
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Simply, click on the New Notebook button to create a new notebook."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Learn ECMAScript(Second Edition)
- LabVIEW程序設計基礎與應用
- 無代碼編程:用云表搭建企業(yè)數(shù)字化管理平臺
- NativeScript for Angular Mobile Development
- OpenNI Cookbook
- 大學計算機基礎(第2版)(微課版)
- Scala程序員面試算法寶典
- Python深度學習:模型、方法與實現(xiàn)
- Programming with CodeIgniterMVC
- 基于SpringBoot實現(xiàn):Java分布式中間件開發(fā)入門與實戰(zhàn)
- Unity&VR游戲美術設計實戰(zhàn)
- Android系統(tǒng)下Java編程詳解
- Java Web開發(fā)基礎與案例教程
- Getting Started with hapi.js
- Python面向對象編程(第4版)