os.removexattr的Python文档 - '*'(star)参数是什么意思?

问题描述 投票:4回答:1

我的第一个问题,请温柔。我搜索但在这里或其他地方找不到答案。

请注意,此问题不适用于解压缩* args等参数。

os.removexattr的python 3.3文档中,陈述如下:

os.removexattr(path, attribute, *, follow_symlinks=True)

    Removes the extended filesystem attribute attribute from path.
    attribute should be bytes or str. If it is a string, it is encoded
    with the filesystem encoding.

    This function can support specifying a file descriptor and not
    following symlinks.

请注意,第三个参数是星号:*

我假设这意味着“指定一个属性或几个以逗号分隔的属性”,但在尝试这样做时,我得到一个异常:

import os
os.removexattr('M7-AAE-01.jpg', 'user.camera_brand', 'user.camera_model')
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    TypeError: Function takes at most 2 positional arguments (3 given)

我也试图提供一个参数列表,但这也不起作用。

在这种情况下,明星论点到底意味着什么?谢谢。

python operating-system file-attributes
1个回答
4
投票

单个星号*只是意味着它强制你使用命名参数。在这种情况下,如果要传递follow_symlinks的值,则必须传递参数名称。

这个想法是你不必阅读像foo(True, False, False)这样的函数调用而不知道这些值正在做什么。

© www.soinside.com 2019 - 2024. All rights reserved.