- Daniel Arbuckle's Mastering Python
- Daniel Arbuckle
- 113字
- 2021-07-02 21:09:33
Changes in packages
Python now includes a package called typing in the standard library that contains classes and functions supporting the usage of type hints.
Python also includes a package called zipapp in the standard library.
For typing visit the following website:
https://docs.python.org/3/library/typing.html
For zipapp, visit this website:
https://docs.python.org/3/library/zipapp.html
https://docs.python.org/3/library/typing.html
For zipapp, visit this website:
https://docs.python.org/3/library/zipapp.html
The zipapp package makes it easy to construct .pyz files. A .pyz file is an archive file containing Python code and arbitrary read-only data, which the Python runtime is able to execute as a self-contained program. Once a program is debugged and ready for distribution, packaging it into a .pyz file is a simple and smart way to hand it to the users.
推薦閱讀
- 程序設計與實踐(VB.NET)
- Java 9 Concurrency Cookbook(Second Edition)
- C++ 從入門到項目實踐(超值版)
- ASP.NET程序設計教程
- MongoDB,Express,Angular,and Node.js Fundamentals
- Terraform:多云、混合云環境下實現基礎設施即代碼(第2版)
- Test-Driven Development with Django
- 軟件測試綜合技術
- Scala Functional Programming Patterns
- Android Game Programming by Example
- Clojure High Performance Programming(Second Edition)
- C# 7.1 and .NET Core 2.0:Modern Cross-Platform Development(Third Edition)
- Python 3快速入門與實戰
- Android應用開發攻略
- Isomorphic Go