공식 홈페이지 접속 https://go.dev/doc/install Download and install - The Go Programming Language Download and install Download and install Go quickly with the steps described here. For other content on installing, you might be interested in: 1. Go download. Click the button below to download the Go installer. Download Go Don't see your operating syste go.dev 설치 클릭 설치완료
import pandas as pd import hashlib list_first = [] list_second = [] list_third = [] list_hash = [] for i in range(0, 10): list_first.append(i) list_hash.append(hashlib.sha256(str(i).encode()).hexdigest()) for i in range(10, 20): list_second.append(i) for i in range(20, 30): list_third.append(i) df = pd.DataFrame(zip(list_first, list_second, list_third, list_hash)) df.columns = ['id_1', 'id_2', '..
먼저 리스트 출력 import pandas as pd import hashlib list_first = [] list_second = [] list_third = [] list_hash = [] for i in range(0, 10): list_first.append(i) list_hash.append(hashlib.sha256(str(i).encode()).hexdigest()) for i in range(10, 20): list_second.append(i) for i in range(20, 30): list_third.append(i) print(list_first) print(list_second) print(list_third) print(list_hash) exit() 리스트를 데이터프레임으로..