gpt4 book ai didi

python - requests等库怎么会有 “period”函数呢?

转载 作者:行者123 更新时间:2023-12-01 07:36:37 27 4
gpt4 key购买 nike

例如:

requests.get() 是一个带有句点的函数。我如何制作自己的函数,例如:

def foo():
return 'bar'

并像这样调用该函数:

x.foo()

不是这样的:

foo()

最佳答案

您会注意到,您还必须执行导入请求。这是因为 requests 要么是 Python 模块,要么是 Python 包。如果您愿意,您可以自己编写这些内容。

# src/library.py  OR  src/library/__init__.py
# ^-module-----^ ^-package-------------^

def foo():
return "bar"
# src/main.py

import library # the name of the other python file

x = library.foo()
assert x == 'bar'

关于python - requests等库怎么会有 “period”函数呢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56963706/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com