2

我正在尝试创建一个函数,当导入然后调用它时,它将检查和修改一个元组。我希望能够多次调用它。但是,我只是让函数返回新变量,因为我想不出一种方法来更改变量。

这是我的两个文件示例,我希望它如何工作:

**modifier.py**
import variable

def function(new_string):
    if new_string not in variable.tuple:
        variable.tuple = new_string, + variable.tuple

**variable.py**
import modifier

tuple = ('one','two',)

modifier.function('add this')

modifier.function('now this')

#--> tuple should now equal ('now this', 'add this', 'one', 'two',)

但是现在我必须这样做:

**modifier.py**    
def function(tuple_old, new_string):
    if new_string not in tuple_old:
        return new_string, + tuple_old

**variable.py**
import modifier

tuple = ('one','two',)

tuple = modifier.function(tuple, 'add this')

tuple = modifier.function(tuple, 'now this')

#--> tuple now equals ('now this', 'add this', 'one', 'two',)

这要混乱得多。首先,我必须传入旧的元组值并获得返回值,而不是直接替换元组。它有效,但它不是干燥的,我知道必须有一种方法可以使这个更清洁。


我不能使用列表,因为这实际上是在我的 django 设置文件上更新我的中间件的功能。此外,我不必不同的文件上使用该功能,但我也认为应该是可能的。

4

2 回答 2

2

我看不出你现在在做什么(最后一个代码块)有什么问题,很清楚。如果我看到类似的东西:

tuple = # something ...

我知道元组已更改(可能只是您用于示例的名称,但不要称您的变量为“元组”)。

但如果我看到这个(你想做的):

tuple = 'one', two'
function('add this')

我永远不会想象这会function改变tuple. 无论如何,它可以通过以下方式完成:

tuple = 'one', 'two'

def function(string):
    global tuple
    if new_string not in tuple:
        tuple = (new_string,) + tuple

function('add this')

也可以这样做:

tuple = 'one', two'
function(tuple, 'add this')

我会说它好一点,因为如果我使用你的代码有问题,我可能会猜到这function对元组有一些影响。

代码是:

tuple = 'one', 'two'

def function(old_tuple, string):
    global tuple
    if new_string not in old_tuple:
        tuple = (new_string,) + old_tuple

function(tuple, 'add this')

最后我想说的是,你现在所做的很清楚,更简单,我不会改变它。

于 2012-01-25T09:37:48.933 回答
1

这似乎有效:

def function(new_string):
if new_string not in variable.tuple:
    variable.tuple = (new_string,) + variable.tuple
于 2012-01-25T05:04:46.930 回答