gpt4 book ai didi

python - python 中的函数声明具有可读且干净的代码?

转载 作者:太空狗 更新时间:2023-10-29 21:27:33 25 4
gpt4 key购买 nike

是否可以在 python 中声明函数并在以后或在单独的文件中定义它们?

我有一些代码:

class tata:
def method1(self):
def func1():
# This local function will be only used in method1, so there is no use to
# define it outside.
# Some code for func1.
# Some code for method1.

问题是代码变得凌乱难读。所以我想知道是否有可能例如在 method1 中声明 func1 并在以后定义它?

最佳答案

当然,没问题:

foo.py:

def func1():
pass

脚本.py:

import foo
class tata:
def method1(self):
func1=foo.func1

关于python - python 中的函数声明具有可读且干净的代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3946628/

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