- 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."
- SQL Server 2012數(shù)據(jù)庫技術(shù)及應(yīng)用(微課版·第5版)
- Python網(wǎng)絡(luò)爬蟲從入門到實(shí)踐(第2版)
- Practical Game Design
- 網(wǎng)店設(shè)計(jì)看這本就夠了
- Learn React with TypeScript 3
- Building Android UIs with Custom Views
- C語言程序設(shè)計(jì)
- Hadoop 2.X HDFS源碼剖析
- 精通Spring:Java Web開發(fā)與Spring Boot高級(jí)功能
- SAP Web Dynpro for ABAP開發(fā)技術(shù)詳解:基礎(chǔ)應(yīng)用
- Clojure Web Development Essentials
- Splunk Essentials
- Building Microservices with Go
- Python深度學(xué)習(xí)與項(xiàng)目實(shí)戰(zhàn)
- PHP程序員面試算法寶典