Esempio n. 1
0
def lihat_data():
    print("Lihat nilai")
    print(
        "==================================================================================="
    )
    print(
        "| No. |     Nama     |      NIM     |   Tugas   |   UTS   |   UAS   |    Akhir    |"
    )
    print(
        "==================================================================================="
    )
    no = 1
    if data.keys():
        for x in data.values():
            print(
                "|  {:2} |  {nama:10}  |  {NIM:10}  |   {tugas:5}   |   {uts:3}   |   {uas:3}   |    {akhir:3.2f}    |"
                .format(no,
                        nama=x[0],
                        NIM=x[1],
                        tugas=x[2],
                        uts=x[3],
                        uas=x[4],
                        akhir=x[5]))
            no += 1
    else:
        print(
            "|                                  TIDAK ADA DATA                                 |"
        )
    print(
        "==================================================================================="
    )
Esempio n. 2
0
def cetak():
    print(
        "\n|=========================================================================|"
    )
    print(
        "|========================= DAFTAR DATA MAHASISWA =========================|"
    )
    print(
        "|=========================================================================|"
    )
    print(
        "| NO |      NAMA       |       NIM        | TUGAS |  UTS  |  UAS  | AKHIR |"
    )
    print(
        "|=========================================================================|"
    )
    no = 1
    for tabel in data.values():
        print("|{0:3} | {1:15} | {2:16} | {3:5} | {4:5} | {5:5} | {6:5} |".
              format(no, tabel[0], tabel[1], tabel[2], tabel[3], tabel[4],
                     tabel[5]))
        no += 1
    print(
        "|=========================================================================|"
    )
    print(
        "\n    (A)dd       (E)dit      (D)elete     (S)earch      (L)ist     (Q)uit   "
    )
Esempio n. 3
0
def lihat_data():
    print("Daftar Nilai:")
    print(
        "===================================================================")
    print(
        "| No |      Nama      |    NIM    | Tugas |  UTS  |  UAS  | Akhir |")
    print(
        "===================================================================")
    if data.keys():
        no = 1
        for tabel in data.values():
            print("| {0:2} | {1:14} | {2:9} | {3:5} | {4:5} | {5:5} | {6:5} |".
                  format(no, tabel[0], tabel[1], tabel[2], tabel[3], tabel[4],
                         tabel[5]))
            print(
                '-------------------------------------------------------------------'
            )
            no += 1
    else:
        print(
            "=========================TIDAK ADA DATA============================"
        )
        print(
            "==================================================================="
        )
Esempio n. 4
0
def cetak():
    print(
        "|=========================================================================|"
    )
    print(
        "|                          DAFTAR DATA MAHASISWA                          |"
    )
    print(
        "|=========================================================================|"
    )
    print(
        "| NO |      NAMA       |       NIM        | TUGAS |  UTS  |  UAS  | AKHIR |"
    )
    print(
        "|=========================================================================|"
    )
    no = 1
    for tabel in data.values():
        print("|{0:3} | {1:15} | {2:16} | {3:5} | {4:5} | {5:5} | {6:5} |".
              format(no, tabel[0], tabel[1], tabel[2], tabel[3], tabel[4],
                     tabel[5]))
        no += 1
    print(
        "|=========================================================================|"
    )
    print("")
Esempio n. 5
0
def lihat_data():
    print("\n|=========================================================================|")
    print("|========================= DAFTAR DATA MAHASISWA =========================|")
    print("|=========================================================================|")
    print("| NO |      NAMA       |       NIM        | TUGAS |  UTS  |  UAS  | AKHIR |")
    print("|=========================================================================|")
    no = 1
    for tabel in data.values():
        print("|{0:3} | {1:15} | {2:16} | {3:5} | {4:5} | {5:5} | {6:5} |"
              .format(no, tabel[0], tabel[1], tabel[2], tabel[3], tabel[4], tabel[5]))
        no += 1
    print("|=========================================================================|")
    print("\n    (T)ambah       (U)bah      (H)apus     (C)ari      (L)ihat     (K)eluar   ")
Esempio n. 6
0
def cetak (data = {}):
    print("===================================================================")
    print("| NO |    NIM    |      NAMA      | TUGAS |  UAS  |  UTS  | AKHIR |")
    print("===================================================================")
    if len(data) <= 0:
        print ("===========================BELUM ADA DATA==========================")
    else:
        no = 1
        for x in data.values():
            print("| {0:2} | {1:9} | {2:14} | {3:5} | {4:5} | {5:5} | {6:5.2f} |".format
                (no,x['nim'],x['nama'],x['tugas'],
                x['uas'],x['uts'],float(x['akhir'])))
            no += 1
        print("===================================================================")