04-28 19:02
Recent Posts
Recent Comments
관리 메뉴

너와나의 관심사

python dict key, value iteration 본문

사는 이야기/IT 이야기

python dict key, value iteration

벤치마킹 2023. 3. 11. 16:16
def print_hi(name):
    # Use a breakpoint in the code line below to debug your script.
    print(f'Hi, {name}')  # Press Ctrl+F8 to toggle the breakpoint.
    a_dict = {'color': 'blue', 'fruit': 'apple', 'pet': 'dog'}

    for key, value in a_dict.items():
        print("key value ", key, '->', value)

deep learning  오래된 SW framework 중에 하나인 caffe 모델의 caffemodel weight 값을 복사 하기 위해  

 

Comments