본문 바로가기

python6

[python] dict 를 list로 변환시키기 value_list = list(dict_data.values()) 2021. 10. 8.
[python] json 을 dict로 변환시키기 #json파일 #{ # "orders": [ # {"order_number": "10000743", "purchase_price": "800"}, # {"order_number": "10000814", "purchase_price": "800"} # ] #} import json def json_parscing(savepath, name): #json 파일 읽기 with open(savepath, 'r', encoding='UTF-8-sig') as json_file: json_data = json.load(json_file) #json_data[orders] : list형 for data in json_data[name]: #json.loads로 dict형으로 변경 dict_data = json.loa.. 2021. 10. 8.
[python] enumerate enumerate를 사용하면, 인덱스값과 해당위치의 값을 알 수 있다. 리스트를 튜플값(인덱스, 요소)으로 반환한다. studentList = ["yun","choi","jung","jang"] for t in enumerate(studentList): print(t) enumerate 활용 - 인덱스와 요소를 각각 반환할 수 도 있다. studentList = ["yun","choi","jung","jang"] for i, s in enumerate(studentList): print(i,s) 2021. 4. 4.
[python] MAC M1 python 설치하기 1. Homebrew 설치 ●버전 확인하는 법 brew -v homebrew 2.7.7 이라고 표시되면 설치가 된 상태. 표시가 나타나지 않는 사람은 설치해야한다. ●homebrew 공식페이지 https://brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" homebrew를 설치했지만 python 3.9.1 적용이 되지 않았다. 그래서 밑에 스크립트를 실행시켜주었다. ※참조사이트 stackoverflow.com/questions/6534.. 2021. 1. 30.