파이썬1 [Python] OOP nico = { "name": "Nico", "XP": 1000, "team": "Team X",}def introduce_player(player): name = player["name"] team = player["team"] print(f"My name is {name} and I play for {team}.")introduce_player(nico)#>> My name is Nico and I play for Team X.introduce_player 함수는 nico를 필요로 하지만이 상태에서는 introduce_player 안에 아무거나 넣을 수 있다ex. introduce_player(1234)도 입력할 수 있음 두 데이터가 연결되어있지만 아무런 제약없이 마음대로 날라다.. 2024. 7. 17. 이전 1 다음 반응형