728x90
딕셔너리 표현
딕셔너리 = { "key1": "value1", "key2": "value2", "key3": "value3" } print("1. print(딕셔너리)") print(딕셔너리) print() print("2.print(딕셔너리.items())") print(딕셔너리.items()) print() for key, value in 딕셔너리.items(): print(f"Key: {key}, Value: {value}") |
결과
1. print(딕셔너리) {'key1': 'value1', 'key2': 'value2', 'key3': 'value3'} 2.print(딕셔너리.items()) dict_items([('key1', 'value1'), ('key2', 'value2'), ('key3', 'value3')]) Key: key1, Value: value1 Key: key2, Value: value2 Key: key3, Value: value3 |
# Parameter passing def f(i, mylist): i=i+1 mylist.append(7) k=10 m=[1,2,3] f(k,m) print(k,m) |
결과
10 [1, 2, 3, 7] |
분석:
결론:
|
함수 *기호
# Variable length of parameter def total(*number): tot = 0 for n in number: tot += n return tot t=total(1,2) print(t) t=total(1,5,2,6) print(t) |
결과
3 14 |
* 기호의 의미:
결론:
|
728x90
'■ 현재-ing > ㅡPython' 카테고리의 다른 글
반) 자료구조 (0) | 2023.10.08 |
---|---|
파이썬 exe (0) | 2023.09.20 |
pyinstaller (0) | 2023.08.31 |
파이썬_No module named 'serial' (0) | 2023.08.27 |
파이썬 뱀 게임(스네이크 게임) (0) | 2023.08.05 |