是否有 Python 等同于 Perl 的 __DATA__ 文件句柄?

Is there are Python equivalent of Perl's __DATA__ filehandle?

在 Perl 中,我经常从脚本末尾的文件句柄 __DATA__ 中读取数据:

while (<DATA>) {
    chomp;
    say;
}
__DATA__
line1
line2 

我发现这比读取文件更快地测试代码等,因为这意味着我可以即时编辑其内容。

来自doc

The __DATA__ token tells the perl compiler that the perl code for compilation is finished.

Everything after the __DATA__ token is available for reading via the filehandle FOOBAR::DATA, where FOOBAR is the name of the current package when the __DATA__ token is reached.

Python 中有对应的吗?如果没有,有人可以建议最 Python-ish 的方法来实现类似的事情吗?

不,Python 中没有直接等价物。将您的数据放入多行变量中:

DATA = '''\
line1
line2
'''

如果您必须访问单独的行,则可以使用 DATA.splitlines() v2/v3。你可以把它放在你的 Python 文件的末尾,前提是你只在一个函数中使用名称 DATA,直到整个模块加载后才被调用。

或者,打开当前模块并从中读取:

with open(__file__.rstrip('co')) as data:
    for line in data:
        while line != '# __DATA__\n':
            continue
        # do something with the rest of the 'data' in the current source file.

# ...

# __DATA__
# This is going to be read later on.

然而,模块的其余部分必须至少仍然是有效的 Python 语法; Python 解析器不能被告知停止解析超过给定点。

一般来说,在 Python 中,您只需将数据文件 放在您的源文件 旁边并读取它。您可以使用 __file__ 变量生成 'current directory' 的路径,从而生成同一位置的任何其他文件:

import os.path

current_dir = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(current_dir, 'data.txt')) as data:
    # read from data.txt