- 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.
- FuelPHP Application Development Blueprints
- GAE編程指南
- R語言數據分析從入門到精通
- 老“碼”識途
- C語言從入門到精通(第4版)
- Quarkus實踐指南:構建新一代的Kubernetes原生Java微服務
- 用Python實現深度學習框架
- Java 11 Cookbook
- Spring Security Essentials
- Elasticsearch搜索引擎構建入門與實戰
- Dart:Scalable Application Development
- Visual C#(學習筆記)
- React.js實戰
- Tkinter GUI Programming by Example
- JavaScript設計模式與開發實踐