-
[Python] dictionary 사용법Python 2021. 11. 4. 01:09
# dictionary my_dict = {"one":1,"two":2,"three":3} list(my_dict) => ['one', 'two', 'three'] list(my_dict.values()) => [1, 2, 3] my_dict["one"]=10 => {'one': 10, 'two': 2, 'three': 3} del my_dict["two"] => {'one': 10, 'three': 3} "one" in my_dict => True "four" not in my_dict => True
'Python' 카테고리의 다른 글
[Python] 원하는 파이썬 버젼에 패키지 다운받기 (0) 2021.11.04 [Python] 함수의 매개변수의 수를 자유롭게 받아보자 *args (0) 2021.11.04 [Python] Dict에서 key로 value 가져오기 (0) 2021.11.01 [Python] "pygame" 이미지 업로드 방법 2가지 feat. os.path.join() (0) 2021.10.30 [Python] "Error" import bs4 could not be resolved from source (2) 2021.10.29