- Python for Google App Engine
- Massimiliano Pippi
- 142字
- 2021-08-06 19:27:20
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 are shown as follows: "If a user is already logged in, the get_current_user()
method returns a User
object, otherwise it returns None
parameter".
A block of code is set as follows:
import webapp2 class HomePage(webapp2.RequestHandler): def get(self): self.response.headers['Content-Type'] = 'text/plain' self.response.out.write('Hello, World!') app = webapp2.WSGIApplication([('/', HomePage)], debug=True)
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: "To create a new application, click the Create an Application button."
推薦閱讀
- Ray分布式機器學習:利用Ray進行大模型的數據處理、訓練、推理和部署
- .NET 3.5編程
- Corona SDK Mobile Game Development:Beginner's Guide(Second Edition)
- PHP編程基礎與實例教程
- 學習OpenCV 4:基于Python的算法實戰
- Mastering React
- Spring Boot+Vue全棧開發實戰
- HTML+CSS+JavaScript網頁設計從入門到精通 (清華社"視頻大講堂"大系·網絡開發視頻大講堂)
- Processing創意編程指南
- Spring技術內幕:深入解析Spring架構與設計原理(第2版)
- 區塊鏈架構之美:從比特幣、以太坊、超級賬本看區塊鏈架構設計
- DevOps 精要:業務視角
- Java設計模式深入研究
- ArcPy and ArcGIS(Second Edition)
- Java程序設計