def check_flow(): flow_list = bank_interface.check_flow_interface(login_user) if flow_list: for flow in flow_list: print(flow) else: print(f'{login_user}没有流水!')
def check_flow(): flow_list = bank_interface.check_flow_interface(login_user) if flow_list: for flow in flow_list: print(flow) else: print('当前用户还没有流水信息!')
def check_flow(): flow=bank_interface.check_flow_interface(login_user) if flow: for n in flow: print(n) else: print('当前用户没有流失')
def check_flow(): flow_list = bank_interface.check_flow_interface(login_user) if flow_list: for i in flow_list: print(i) else: print('当前用户没有流水!')
def check_flow(): # 直接调用查看流水接口 flow_list = bank_interface.check_flow_interface( login_user ) if flow_list: for flow in flow_list: print(flow) else: print('当前用户没有流水!')
def check_flow(): # 调用查看账户流水接口 flow_list = bank_interface.check_flow_interface(username=login_user) # 判断并打印流水信息 print('==================== 账户流水 ====================') if flow_list: for flow in flow_list: print(flow) else: print('暂无流水') print('==================== END ====================')
def check_flow(): flow_list = bank_interface.check_flow_interface(login_user) for flow in flow_list: print(flow)
def check_flow(): flows = bank_interface.check_flow_interface(user_info['user']) for flow in flows: print(flow)
def check_flow(): print('欢迎来到查看流水功能') flow_list = bank_interface.check_flow_interface(user_info['username']) if flow_list: for flow in flow_list: print(flow)
def check_flow(): flow_list = bank_interface.check_flow_interface(user_info["name"]) for line in flow_list: print(line)
def check_flow(): flow_list = bank_interface.check_flow_interface(user_info['user']) if flow_list: for flow in flow_list: print(flow)
def check_flow(): print('欢迎来到查流水界面') flow_list = bank_interface.check_flow_interface(user_inf.get('user')) for flow in flow_list: print(flow)