예제 #1
0
def check_record():
    print('查看流水')
    bankflow = bank.check_record_interface(user_data['name'])
    for flow in bankflow:
        print(flow)
예제 #2
0
def check_record():
    print('查看流水')
    records = bank.check_record_interface(user_info['name'])
    for record in records:
        print(record)
예제 #3
0
def check_record():
    print("check the record")
    bankflow = bank.check_record_interface(user_data["name"])
    for flow in bankflow:
        print(flow)
예제 #4
0
def check_record():
    print("check record")
    flg, msg = bank.check_record_interface(user_data["name"])
예제 #5
0
파일: src.py 프로젝트: szk5043/python
def check_record():
    '''查看流水'''
    flag, msg = bank.check_record_interface(user_info['name'])
    if flag:
        for bankflow in msg:
            print(bankflow)