mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-01 21:50:13 +08:00
Merge pull request #22155 from wxy/20210520-Make-your-API-better-with-this-positional-trick-from-Python-3.8
PRF&PUB:published/20210520 Make your API better with this positional trick from Python 3.8.md
This commit is contained in:
commit
7a2efa482e
@ -3,34 +3,35 @@
|
||||
[#]: author: (Moshe Zadka https://opensource.com/users/moshez)
|
||||
[#]: collector: (lujun9972)
|
||||
[#]: translator: (geekpi)
|
||||
[#]: reviewer: ( )
|
||||
[#]: publisher: ( )
|
||||
[#]: url: ( )
|
||||
[#]: reviewer: (wxy)
|
||||
[#]: publisher: (wxy)
|
||||
[#]: url: (https://linux.cn/article-13466-1.html)
|
||||
|
||||
用 Python 3.8 中的这个位置技巧让你的 API 变得更好
|
||||
======
|
||||
探索只接受位置参数和其他两个未被充分利用但仍然有用的 Python 特性。
|
||||
![Women in computing and open source v5][1]
|
||||
|
||||
这是关于首次出现在 Python 3.x 版本中的特性的系列文章的第九篇。Python 3.8 于 2019 年首次发布,两年后,它的许多很酷的新特性仍然没有被使用。下面是其中的三个。
|
||||
> 探索只接受位置参数和其他两个未被充分利用但仍然有用的 Python 特性。
|
||||
|
||||
![](https://img.linux.net.cn/data/attachment/album/202106/07/164929k51eccocxkx4xf11.jpg)
|
||||
|
||||
这是 Python 3.x 首发特性系列文章的第九篇。Python 3.8 于 2019 年首次发布,两年后,它的许多很酷的新特性仍然没有被使用。下面是其中的三个。
|
||||
|
||||
### importlib.metadata
|
||||
|
||||
[入口点][2]在 Python 包中被用来做各种事情。最熟悉的是 [console_scripts][3] 入口点,但 Python 中的许多插件系统都使用它们。
|
||||
[入口点][2] 在 Python 包中被用来做各种事情。大多数人熟悉的是 [console_scripts][3] 入口点,不过 Python 中的许多插件系统都使用它们。
|
||||
|
||||
在 Python 3.8 之前,从 Python 中读取入口点的最好方法是使用 `pkg_resources`,这是一个有点笨重的模块,它是 `setuptools` 的一部分。
|
||||
|
||||
新的 `importlib.metadata` 是一个内置模块,它允许访问同样的东西:
|
||||
|
||||
|
||||
```
|
||||
from importlib import metadata as importlib_metadata
|
||||
|
||||
distribution = importlib_metadata.distribution("numpy")
|
||||
distribution.entry_points
|
||||
```
|
||||
|
||||
[/code] [code]
|
||||
|
||||
```
|
||||
[EntryPoint(name='f2py', value='numpy.f2py.f2py2e:main', group='console_scripts'),
|
||||
EntryPoint(name='f2py3', value='numpy.f2py.f2py2e:main', group='console_scripts'),
|
||||
EntryPoint(name='f2py3.9', value='numpy.f2py.f2py2e:main', group='console_scripts')]
|
||||
@ -40,56 +41,67 @@ distribution.entry_points
|
||||
|
||||
|
||||
```
|
||||
`f"{distribution.metadata['name']}=={distribution.version}"`[/code] [code]` 'numpy==1.20.1'`
|
||||
f"{distribution.metadata['name']}=={distribution.version}"`[/code] [code]` 'numpy==1.20.1'
|
||||
```
|
||||
|
||||
### 只接受位置参数
|
||||
|
||||
强制关键字的参数在传达 API 作者的意图方面取得巨大成功之后,另一个空白被填补了:只接受位置参数。
|
||||
|
||||
特别是对于那些允许使用任意关键字的函数(例如,生成数据结构),这意味着对允许的参数名称的限制更少:
|
||||
|
||||
特别是对于那些允许使用任意关键字的函数(例如,生成数据结构),这意味着对允许的参数名称的限制更少:
|
||||
|
||||
```
|
||||
def some_func(prefix, /, **kwargs):
|
||||
print(prefix, kwargs)
|
||||
```
|
||||
|
||||
[/code] [code]`some_func("a_prefix", prefix="prefix keyword value")`[/code] [code]` a_prefix {'prefix': 'prefix keyword value'}`
|
||||
```
|
||||
some_func("a_prefix", prefix="prefix keyword value")
|
||||
```
|
||||
|
||||
```
|
||||
a_prefix {'prefix': 'prefix keyword value'}`
|
||||
```
|
||||
|
||||
注意,令人困惑的是,_变量_ `prefix` 的值与 `kwargs["prefix"]` 的值不同。就像在很多地方一样,要注意小心使用这个功能。
|
||||
|
||||
### 自我调试表达式
|
||||
|
||||
50多年来, `print()` 语句(及其在其他语言中的对应语句)一直是快速调试输出的最爱。
|
||||
50 多年来,`print()` 语句(及其在其他语言中的对应语句)一直是快速调试输出的最爱。
|
||||
|
||||
但是我们在打印语句方面取得了很大的进展,比如:
|
||||
|
||||
|
||||
```
|
||||
special_number = 5
|
||||
print("special_number = %s" % special_number)
|
||||
```
|
||||
|
||||
[/code] [code]` special_number = 5`
|
||||
```
|
||||
special_number = 5
|
||||
```
|
||||
|
||||
然而,自我记录的 f-strings 使它更容易明确:
|
||||
|
||||
|
||||
```
|
||||
`print(f"{special_number=}")`[/code] [code]` special_number=5`
|
||||
print(f"{special_number=}")
|
||||
```
|
||||
|
||||
```
|
||||
special_number=5`
|
||||
```
|
||||
|
||||
在 f-string 插值部分的末尾添加一个 `=`,可以保留字面部分,同时添加数值。
|
||||
|
||||
当更复杂的表达式在该部分内时,这就更有用了:
|
||||
|
||||
|
||||
```
|
||||
values = {}
|
||||
print(f"{values.get('something', 'default')=}")
|
||||
```
|
||||
|
||||
[/code] [code]` values.get('something', 'default')='default'`
|
||||
```
|
||||
values.get('something', 'default')='default'
|
||||
```
|
||||
|
||||
### 欢迎来到 2019 年
|
||||
@ -103,7 +115,7 @@ via: https://opensource.com/article/21/5/python-38-features
|
||||
作者:[Moshe Zadka][a]
|
||||
选题:[lujun9972][b]
|
||||
译者:[geekpi](https://github.com/geekpi)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
校对:[wxy](https://github.com/wxy)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
Loading…
Reference in New Issue
Block a user