Python in Azure Functions 基于Python的Azure Functions实践 赵健Python in Azure Functions 基于Python的Azure Functions实践 赵健 - Microsoft 目录 CONTENTS Python 在 Azure 中无处不在 粘合剂 – Azure Functions Azure Functions 实践 Python 在 Azure 中无处不在 IEEE Spectrum’s sixth annual interactive Dev Tools Azure DevOps Azure NoteBook 运行 Python 代码 VM App Service Functions AKS ACI Azure Batch Notebook 连接 & 集成 Azure服务 Functions 认知服务 CosmosDB Event Grid Blob … Python 应用在Azure中的多种方式 Cloud-Optimized Cost control and Operations model Azure Azure 粘合剂 – Azure Functions Serverless in Azure – FaaS 是 Serverless 架构的核心 什么是 Azure Functions .NET, Node, Java, Docker, PHP, Ruby, Python Staging & deployment0 码力 | 28 页 | 12.57 MB | 1 年前3
PyMuPDF 1.24.2 Documentationline interface 179 22 Classes 191 i 23 Operator Algebra for Geometry Objects 419 24 Low Level Functions and Classes 425 25 Glossary 449 26 Constants and Enumerations 455 27 Color Database 465 28 Appendix images and document pages. Tesseract is separate software, not a Python package. To enable OCR functions in PyMuPDF, the software must be installed and the system envi- ronment variable "TESSDATA_PREFIX" after installing PyMuPDF. PyMuPDF will detect their presence during import or when the respective functions are being used. 10 Chapter 4. Installation PyMuPDF Documentation, Release 1.24.2 4.6 Build and0 码力 | 565 页 | 6.84 MB | 1 年前3
Hello 算法 1.0.0b1 Python版想。 设输入数据大小为 ? ,由于每轮缩减到一半,因此循环次数是 log2 ? ,即 2? 的反函数。 # === File: time_complexity.py === def logarithmic(n): """ 对数阶(循环实现)""" count = 0 while n > 1: n = n / 2 count += 1 return count Figure 2‑60 码力 | 178 页 | 14.67 MB | 1 年前3
Hello 算法 1.0.0b2 Python版想。 设输入数据大小为 ? ,由于每轮缩减到一半,因此循环次数是 log2 ? ,即 2? 的反函数。 # === File: time_complexity.py === def logarithmic(n: float) -> int: """ 对数阶(循环实现)""" count: int = 0 while n > 1: n = n / 2 count += 1 return0 码力 | 186 页 | 15.69 MB | 1 年前3
Python 标准库参考指南 2.7.18 Software Foundation Email: docs@python.org Contents 1 概述 3 2 内置函数 5 3 Non-essential Built-in Functions 25 4 内置常量 27 4.1 由 site 模块添加的常量 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 314 11.3 copy_reg —Register pickle support functions . . . . . . . . . . . . . . . . . . . . . . . . . . . 314 11.4 shelve —Python 对象持久化 . . . . . Python . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1179 25.6 test.support —Utility functions for tests . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1181 26 调试和分析 1187 26.10 码力 | 1552 页 | 7.42 MB | 9 月前3
Python 标准库参考指南 2.7.18 Software Foundation Email: docs@python.org Contents 1 概述 3 2 内置函数 5 3 Non-essential Built-in Functions 25 4 内置常量 27 4.1 由 site 模块添加的常量 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 314 11.3 copy_reg —Register pickle support functions . . . . . . . . . . . . . . . . . . . . . . . . . . . 314 11.4 shelve —Python 对象持久化 . . . . . Python . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1179 25.6 test.support —Utility functions for tests . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1181 26 调试和分析 1187 26.10 码力 | 1552 页 | 7.42 MB | 9 月前3
Python 标准库参考指南 2.7.18 Software Foundation Email: docs@python.org Contents 1 概述 3 2 内置函数 5 3 Non-essential Built-in Functions 25 4 内置常量 27 4.1 由 site 模块添加的常量 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 314 11.3 copy_reg —Register pickle support functions . . . . . . . . . . . . . . . . . . . . . . . . . . . 314 11.4 shelve —Python 对象持久化 . . . . . Python . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1179 25.6 test.support —Utility functions for tests . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1181 26 调试和分析 1187 26.10 码力 | 1552 页 | 7.42 MB | 9 月前3
Hello 算法 1.0.0b4 Python版想。 设输入数据大小为 ? ,由于每轮缩减到一半,因此循环次数是 log2 ? ,即 2? 的反函数。 # === File: time_complexity.py === def logarithmic(n: float) -> int: """ 对数阶(循环实现)""" count = 0 while n > 1: n = n / 2 count += 1 return count0 码力 | 329 页 | 27.34 MB | 1 年前3
Hello 算法 1.1.0 Python版和以下代码模拟了“每轮缩减到一半”的过程,时间复杂度为 ?(log2 ?) ,简记为 ?(log ?) : # === File: time_complexity.py === def logarithmic(n: int) -> int: """ 对数阶(循环实现)""" count = 0 while n > 1: n = n / 2 count += 1 return count0 码力 | 364 页 | 18.42 MB | 1 年前3
Hello 算法 1.0.0b5 Python版和以下代码模拟了“每轮缩减到一半”的过程,时间复杂度为 ?(log2 ?) ,简记为 ?(log ?) 。 # === File: time_complexity.py === def logarithmic(n: float) -> int: """ 对数阶(循环实现)""" count = 0 while n > 1: n = n / 2 count += 1 return count0 码力 | 361 页 | 30.64 MB | 1 年前3
共 503 条
- 1
- 2
- 3
- 4
- 5
- 6
- 51













