예제 #1
0
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}没有流水!')
예제 #2
0
파일: src.py 프로젝트: pr1s0n/Python3_Work
def check_flow():
    flow_list = bank_interface.check_flow_interface(login_user)
    if flow_list:
        for flow in flow_list:
            print(flow)
    else:
        print('当前用户还没有流水信息!')
예제 #3
0
파일: src.py 프로젝트: mtccvip/atm
def check_flow():
    flow=bank_interface.check_flow_interface(login_user)
    if flow:
        for n in flow:
            print(n)
    else:
        print('当前用户没有流失')
예제 #4
0
파일: src.py 프로젝트: x1angw2/Python
def check_flow():
    flow_list = bank_interface.check_flow_interface(login_user)

    if flow_list:
        for i in flow_list:
            print(i)
    else:
        print('当前用户没有流水!')
예제 #5
0
파일: src.py 프로젝트: rogerXS80/database
def check_flow():
    # 直接调用查看流水接口
    flow_list = bank_interface.check_flow_interface(
        login_user
    )

    if flow_list:
        for flow in flow_list:
            print(flow)
    else:
        print('当前用户没有流水!')
예제 #6
0
파일: src.py 프로젝트: wangwenjei/git_dataa
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    ====================')
예제 #7
0
파일: src.py 프로젝트: buildearth/Python
def check_flow():
    flow_list = bank_interface.check_flow_interface(login_user)
    for flow in flow_list:
        print(flow)
예제 #8
0
def check_flow():
    flows = bank_interface.check_flow_interface(user_info['user'])
    for flow in flows:
        print(flow)
예제 #9
0
def check_flow():
    print('欢迎来到查看流水功能')
    flow_list = bank_interface.check_flow_interface(user_info['username'])
    if flow_list:
        for flow in flow_list:
            print(flow)
예제 #10
0
def check_flow():
    flow_list = bank_interface.check_flow_interface(user_info["name"])
    for line in flow_list:
        print(line)
예제 #11
0
파일: src.py 프로젝트: sanjiangcompany/ATM
def check_flow():
    flow_list = bank_interface.check_flow_interface(user_info['user'])
    if flow_list:
        for flow in flow_list:
            print(flow)
예제 #12
0
def check_flow():
    print('欢迎来到查流水界面')
    flow_list = bank_interface.check_flow_interface(user_inf.get('user'))
    for flow in flow_list:
        print(flow)