안녕세계
index로 value 접근 아래 방법으로 index를 통해 value 에 접근할 수 있지만 권장하지 않습니다. arr = ['a', 'b', 'c'] for index in range(len(arr)): print(index, arr[index]) # Output: # 0 a # 1 b # 2 c enumerate()를 활용한 index와 value 동시 접근 python 내장 함수인 enumerate() 내장 함수를 사용하면 index와 value 에 동시 접근할 수 있습니다. arr = ['a', 'b', 'c'] for index, value in enumerate(arr): print(index, value) # Output: # 0 a # 1 b # 2 c enumerate() 활용 순서가 있..
timestamp 만들기 timestamp = 초 * 분 * 시 * 일 timestamp = 60 * 60 * 24 * 30 print(timestamp) # 2592000 str 으로 변환 timestamp ➠ str import time timestamp = time.time() s = str(timestamp) print(s) # 1522049204.295597 datetime ➠ str from datetime import datetime s = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(s) # 2018-03-26 16:27:00 timestamp 로 변환 str ➠ timestamp from datetime import datetime impor..
리스트에서 딕셔너리 중복 제거 파이썬 리스트에서 특정 속성 기준으로 중복되는 딕셔너리를 제거할 때 사용되는 Example 입니다. 다음과 같은 accounts 계정 목록이 있다고 가정해봅시다. accounts = [ {'id': 1, 'username': 'Kim'}, {'id': 2, 'username': 'Lee'}, {'id': 3, 'username': 'Park'}, {'id': 3, 'username': 'Choi'}, ] 위 예제 코드에서 accounts 리스트에 username이 Park 과 Choi 인 사용자의 id가 같습니다.이때, 우리는 id가 3인 계정은 하나만 출력하고 싶을 때 다음과 같이 코드를 작성합니다. accounts = [ {'id': 1, 'username': 'Kim'..