-
[비공개] Learn to Program w/ Python 8. Mutabili..
아래 퀴즈 다섯 개를 풀어보시면 왜 이 mutability issue가 run amok 하는 지를 아실텝니다: x = 1 def test(): x = 2 test() print(x) x = 1 def test(): global x x = 2 test() print(x) x = [1] def test(): x = [2] test() print(x) x = [1] def test(): global x x = [2] test() print(x) x = [1] def test(): x[0] = 2 test() print(x) 원본 비디오: (1) Mutability revisited - Python 3 Programming Tutorial p.8 - YouTube추천 -
[비공개] Learn to Program w/ Python 8. Mutabili..
아래 퀴즈 다섯 개를 풀어보시면 왜 이 mutability issue가 run amok 하는 지를 아실텝니다: x = 1 def test(): x = 2 test() print(x) x = 1 def test(): global x x = 2 test() print(x) x = [1] def test(): x = [2] test() print(x) x = [1] def test(): global x x = [2] test() print(x) x = [1] def test(): x[0] = 2 test() print(x) 원본 비디오: (1) Mutability revisited - Python 3 Programming Tutorial p.8 - YouTube추천 -
[비공개] Learn to Program w/ Python 5. Indexes ..
원본 비디오: (1) Indexes and slices - Python 3 Programming Tutorial p.5 - YouTube추천 -
[비공개] Learn to Program w/ Python 5. Indexes ..
원본 비디오: (1) Indexes and slices - Python 3 Programming Tutorial p.5 - YouTube추천 -
[비공개] Learn to Program w/ Python 5. Indexes ..
원본 비디오: (1) Indexes and slices - Python 3 Programming Tutorial p.5 - YouTube추천 -
[비공개] Learn to Program w/ Python 5. Indexes ..
원본 비디오: (1) Indexes and slices - Python 3 Programming Tutorial p.5 - YouTube추천 -
[비공개] Learn to Program w/ Python 4. Built-in..
우린 console-based 즉, text-based 게임을 만들어내고 있습니다. 여하이 visualized 해내어서 게임 이용자로 하여금 game map을 보면서 어떤 방식으로든 자신의 행동을 거기에 드러내게 해줄 수 있을 지를 고민해보고 구현해냅니다. 원본 비디오: (1) Built-in Functions - Python 3 Programming Tutorial p.4 - YouTube추천 -
[비공개] Learn to Program w/ Python 4. Built-in..
우린 console-based 즉, text-based 게임을 만들어내고 있습니다. 여하이 visualized 해내어서 게임 이용자로 하여금 game map을 보면서 어떤 방식으로든 자신의 행동을 거기에 드러내게 해줄 수 있을 지를 고민해보고 구현해냅니다. 원본 비디오: (1) Built-in Functions - Python 3 Programming Tutorial p.4 - YouTube추천 -
[비공개] Learn to Program w/ Python 4. Built-in..
우린 console-based 즉, text-based 게임을 만들어내고 있습니다. 여하이 visualized 해내어서 게임 이용자로 하여금 game map을 보면서 어떤 방식으로든 자신의 행동을 거기에 드러내게 해줄 수 있을 지를 고민해보고 구현해냅니다. 원본 비디오: (1) Built-in Functions - Python 3 Programming Tutorial p.4 - YouTube추천 -
[비공개] Learn to Program w/ Python 4. Built-in..
우린 console-based 즉, text-based 게임을 만들어내고 있습니다. 여하이 visualized 해내어서 게임 이용자로 하여금 game map을 보면서 어떤 방식으로든 자신의 행동을 거기에 드러내게 해줄 수 있을 지를 고민해보고 구현해냅니다. 원본 비디오: (1) Built-in Functions - Python 3 Programming Tutorial p.4 - YouTube추천