pembuktian menggunakan compile lebih cepat terhadap interpreted pada py
import time #lib atau package time
start_time = time.time()
print("hello world")
a = 12 #assignment = menaruh ke memory
print(a)
#akhir pada time
print(time.time() - start_time, "detik")
run dengan interpreter
hello world
12
0.0010020732879638672 detik
run dengan compile
python -m py_compile .\Main.py
cd .\__pycache__\
python .\Main.cpython-39.pyc
hello world
12
0.0003020763397216797 detik
terlihat pada run dengan compile membutuhkan waktu lebih sedikit artinya lebih cepat
Tidak ada komentar:
Posting Komentar