gpt4 book ai didi

python - Python 有类似 Perl 5.1 0's "state"variables 的东西吗?

转载 作者:太空狗 更新时间:2023-10-29 20:32:14 24 4
gpt4 key购买 nike

在 Perl 5.10 中,我可以说:

sub foo () {
state $x = 1;
say $x++;
}

foo();
foo();
foo();

...它会打印出:

1
2
3

Python有这样的东西吗?

最佳答案

类可能更适合这里(并且通常更适合任何涉及“状态”的事物):

class Stateful(object):

def __init__(self):
self.state_var = 0

def __call__(self):
self.state_var = self.state_var + 1
print self.state_var

foo = Stateful()
foo()
foo()

关于python - Python 有类似 Perl 5.1 0's "state"variables 的东西吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/604622/

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