Skip to content

Instantly share code, notes, and snippets.

View Razor-Sec's full-sized avatar
:shipit:
Just Keep Learning :D

Razor-Sec Razor-Sec

:shipit:
Just Keep Learning :D
View GitHub Profile
--
-- Kelompok Net
DROP DATABASE IF EXISTS sisdat_tokped;
CREATE DATABASE IF NOT EXISTS sisdat_tokped;
USE sisdat_tokped;
DROP TABLE IF EXISTS penjual;
@Razor-Sec
Razor-Sec / app.py
Last active October 15, 2021 06:38
#!/bin/python3
import math
import re
def main_sisdij():
com = str(input("Masukan komplement ke brp contoh (1 - 16 atau A - F): "))
no = str(input("Masukan nilai complement contoh ( AF12 ) : "))
ketentuan = toHex(com)
if(ketentuan == True):
└─$ python3 app.py
Nilai :
[35.0, 46.0, 27.0, 45.0, 78.0, 73.0, 43.0, 37.0, 42.0, 24.0, 87.0, 39.0, 23.0, 43.0, 65.0, 54.0, 34.0, 63.0, 86.0, 21.0, 54.0, 74.0, 84.0, 43.0, 65.0, 53.0, 48.0, 65.0, 77.0, 46.0, 75.0, 24.0, 23.0, 27.0, 76.0, 28.0, 34.0, 93.0, 43.0, 54.0, 54.0, 23.0, 34.0, 75.0, 65.0, 54.0, 35.0, 45.0, 76.0, 65.0, 52.0, 81.0, 88.0, 76.0, 64.0, 89.0]
Nilai terbesar : 93.0
Nilai terkecil : 21.0
banyak variable : 56
Banyak Baris : 7
Panjang Baris : 11
-----------------------------------------
| Nilai | Freq |
# solving statistika karna mager ngitung :D
# done dong wkwkwk
import math
import statistics
from collections import Counter
import numpy as np
from scipy.stats import kurtosis, skew
places = []