- Python Data Structures and Algorithms
- Benjamin Baka
- 190字
- 2021-07-09 19:44:56
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, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "This repetitive construct could be a simple while loop or any other kind of loop."
A block of code is set as follows:
def dequeue(self):
if not self.outbound_stack:
while self.inbound_stack:
self.outbound_stack.append(self.inbound_stack.pop())
return self.outbound_stack.pop()
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
def dequeue(self):
if not self.outbound_stack:
while self.inbound_stack:
self.outbound_stack.append(self.inbound_stack.pop())
return self.outbound_stack.pop()
Any command-line input or output is written as follows:
% python bubble.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."
- UI設計基礎培訓教程
- Learning Microsoft Windows Server 2012 Dynamic Access Control
- Clojure Programming Cookbook
- Hyper-V 2016 Best Practices
- Boost C++ Application Development Cookbook(Second Edition)
- Network Automation Cookbook
- Dependency Injection in .NET Core 2.0
- Linux環境編程:從應用到內核
- Learning Data Mining with R
- Programming with CodeIgniterMVC
- Python機器學習之金融風險管理
- Python 3 數據分析與機器學習實戰
- 從零開始構建深度前饋神經網絡:Python+TensorFlow 2.x
- 計算機程序的構造和解釋(JavaScript版)
- C語言編程魔法書:基于C11標準