2

我有这样的代码:

import random

def helper():
    c = random.choice([False, True]),
    d = 1 if (c == True) else random.choice([1, 2, 3])
    return c, d

class Cubic(object):
    global coefficients_bound

    def __init__(self, a = random.choice([False, True]), 
        b = random.choice([False, True]),
        (c, d) = helper()):
        ...
        ...

引入了 helper() 函数,因为我在函数本身的定义中不能有相互依赖的参数 - Python 抱怨它在计算 d 时找不到 c。

我希望能够像这样创建此类的对象,更改默认参数:

x = Cubic(c = False)

但我得到这个错误:

Traceback (most recent call last):
  File "cubic.py", line 41, in <module>
    x = Cubic(c = False)
TypeError: __init__() got an unexpected keyword argument 'c'

这可能与我的写作方式有关吗?如果没有,我应该怎么做?

4

1 回答 1

6

简单地说:

class Cubic(object):
    def __init__(self, c=None, d=None):
        if c is None:
            c = random.choice([False, True])
        if d is None:
            d = 1 if c else random.choice([1, 2, 3])
        print c, d
于 2013-04-02T09:45:53.267 回答