Maxima's Lab

[Python] tqdm 패키지 사용법 본문

Python

[Python] tqdm 패키지 사용법

Minima 2024. 1. 29. 21:25
728x90
SMALL

안녕하세요, 오늘은 tqdm 패키지 사용하는 방법에 대해서 알아보겠습니다.

 

패키지 설치를 위한 방법은 다음과 같습니다. 

 

pip install tqdm

 

 

패키지 설치 후 먼저 간단한 예시에 대해서 알아보겠습니다.

 

from tqdm import tqdm

for _ in tqdm(range(100000000), desc="Example - 1"):
   pass

 

 


 

range(100000000)이 아닌 일반적인 List를 활용한 예시는 다음과 같습니다.

 

from tqdm import tqdm
import numpy as np

A = np.random.randint(0, 100, (100,))
print(A, "\n")

for _ in tqdm(A, desc="Example - 2"):
   pass

 

 


 

tqdm를 활용해서 enumerate()와 유사한 기능을 사용하기 위한 예시는 다음과 같습니다.

 

from tqdm import tqdm
import numpy as np

A = np.random.randint(0, 100, (100,))
print(A, "\n")

for A_ele, index in zip(tqdm(A, desc="Example - 2"), range(len(A))):
   print("\n", A_ele, index)

 

 


 

이상으로, tqdm 패키지를 활용하여 간단한 예시를 구현하는 방법에 대해 알아보았습니다.

감사드립니다.

728x90
LIST
Comments