简体   繁体   中英

When importing a module in another .py , return of function is different to directly run it?

I have the following program:

def savings_account(client_to_accounts: Dict[Tuple[str, int],
                     List[List[float]]], valid_client: Tuple[str, int],
                       balance: float, interest: float)-> list:
   ''' Return the newest update of accounts added.'''

   key_list = client_to_accounts.keys()
   for i in key_list:
       if i == valid_client:
           last = len(client_to_accounts[i][0]) - 1
           client_to_accounts[i][0].insert(last,balance)
           client_to_accounts[i][1].insert(last,interest)

   return client_to_accounts[i]

When I call this func from original file like to:

actual = savings_account({('Habib', 696969696): [[1.0, 10000.0], [2.0, 1.0]],
                              ('Hendiye', 123456789): [[20000.0, -100.0], [1.0, 1.0]]},
                              ('Hendiye', 123456789),40.0, 2.0)
print(actual)
#printed: [[20000.0, 40.0, -100.0], [1.0, 2.0, 1.0]]

the value of ('Hendiye', 123456789) correctly will be update. but when call this function from other python file the value of ('Hendiye', 123456789) isn't updated.

 import banking_functions
 param1 = {('Habib', 696969696): [[1.0, 10000.0], [2.0, 1.0]], ('Hendiye', 123456789): [[20000.0, 
        -100.0], [1.0, 1.0]]}
 param2 = (('Hendiye', 123456789),40.0, 2.0)
 param3 =  40.0
 param4 =   2.0
                    
 actual = banking_functions.savings_account(param1, param2, param3, param4)
 #expected = [[20000.0, 40.0, -100.0], [1.0, 2.0, 1.0]]
 print(actual)
 #printed : [[20000.0, -100.0], [1.0, 1.0]]
 

Your second snippet does not call the function in the same way the first does.

Did you mean:

import banking_functions

param1 = {('Habib', 696969696): [[1.0, 10000.0], [2.0, 1.0]], ('Hendiye', 123456789): [[20000.0, 
        -100.0], [1.0, 1.0]]}
param2 = ('Hendiye', 123456789)  # Just a tuple of two items
param3 =  40.0
param4 =   2.0
                    
actual = banking_functions.savings_account(param1, param2, param3, param4)
#expected = [[20000.0, 40.0, -100.0], [1.0, 2.0, 1.0]]
print(actual)

Output same as first now.

there must be a value error your code gives the same answer in both cases.

from file:

from typing import List,Dict,Tuple

def savings_account(client_to_accounts: Dict[Tuple[str, int],
                     List[List[float]]], valid_client: Tuple[str, int],
                       balance: float, interest: float)-> list:
   ''' Return the newest update of accounts added.'''

   key_list = client_to_accounts.keys()
   for i in key_list:
       if i == valid_client:
           last = len(client_to_accounts[i][0]) - 1
           client_to_accounts[i][0].insert(last,balance)
           client_to_accounts[i][1].insert(last,interest)

   return client_to_accounts[i]


param1 = {('Habib', 696969696): [[1.0, 10000.0], [2.0, 1.0]], ('Hendiye', 123456789): [[20000.0,
        -100.0], [1.0, 1.0]]}
param2 = (('Hendiye', 123456789),40.0, 2.0)
param3 =  40.0
param4 =   2.0

actual = savings_account(param1, param2, param3, param4)

print(actual)

output:

[[20000.0, 40.0, -100.0], [1.0, 2.0, 1.0]]

and from shell

在此处输入图像描述

so, there is value error:)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM