Python 2

[Python] ๋ฐ์ฝ”๋ ˆ์ดํ„ฐ (Decorator)

๋ฐ์ฝ”๋ ˆ์ดํ„ฐ (Decorator) ? - ํ•จ์ˆ˜ ์•ž๋’ค์— ๊ธฐ๋Šฅ์„ ์ถ”๊ฐ€ํ•ด์„œ ์† ์‰ฝ๊ฒŒ ํ•จ์ˆ˜๋ฅผ ํ™œ์šฉํ•  ์ˆ˜ ์žˆ๋Š” ๊ธฐ๋ฒ• - Closure function - ์—ฌ๋Ÿฌ ํ•จ์ˆ˜์— ๋™์ผํ•œ ๊ธฐ๋Šฅ์„ @๋ฐ์ฝ”๋ ˆ์ดํ„ฐ ํ•˜๋‚˜๋กœ ๊ฐ„ํŽธํ•˜๊ฒŒ ์ถ”๊ฐ€ Closure function ํ•จ์ˆ˜์™€ ํ•ด๋‹น ํ•จ์ˆ˜๊ฐ€ ๊ฐ€์ง€๊ณ  ์žˆ๋Š” ๋ฐ์ดํ„ฐ๋ฅผ ํ•จ๊ป˜ ๋ณต์‚ฌ, ์ €์žฅํ•ด์„œ ๋ณ„๋„ ํ•จ์ˆ˜๋กœ ํ™œ์šฉํ•˜๋Š” ๊ธฐ๋ฒ• ์™ธ๋ถ€ ํ•จ์ˆ˜๊ฐ€ ์†Œ๋ฉธํ•˜๋”๋ผ๋„, ์™ธ๋ถ€ ํ•จ์ˆ˜ ์•ˆ์— ์žˆ๋Š” ๋กœ์ปฌ ๋ณ€์ˆ˜ ๊ฐ’๊ณผ ์ค‘์ฒฉํ•จ์ˆ˜(๋‚ด๋ถ€ํ•จ์ˆ˜)๋ฅผ ์‚ฌ์šฉ ๊ฐ€๋Šฅ def outer_func(num): #์ค‘์ฒฉ ํ•จ์ˆ˜์—์„œ ์™ธ๋ถ€ ํ•จ์ˆ˜์˜ ๋ณ€์ˆ˜์— ์ ‘๊ทผ ๊ฐ€๋Šฅ def inner_func(): print(num) return 'hi' return inner_func #์ค‘์ฒฉ(๋‚ด๋ถ€) ํ•จ์ˆ˜ ์ด๋ฆ„์„ ๋ฆฌํ„ด closure_func = outer_func(10) #First-cl..

Python 2024.01.31

[Python] python comprehension

Python comprehension ? ๋‹ค๋ฅธ Sequence๋กœ๋ถ€ํ„ฐ ์ƒˆ๋กœ์šด Sequence (Iterable Object)๋ฅผ ๋งŒ๋“ค ์ˆ˜ ์žˆ๋Š” ๊ธฐ๋Šฅ * comprehension : ์ดํ•ด๋ ฅ 01. List comprehension [ ์ถœ๋ ฅ ํ‘œํ˜„์‹ for ์š”์†Œ in ์ž…๋ ฅ Sequence [ if ์กฐ๊ฑด์‹ ] ] ์ž…๋ ฅ Sequence๋Š” Iteration์ด ๊ฐ€๋Šฅํ•œ ๋ฐ์ดํ„ฐ Sequence ํ˜น์€ ์ปฌ๋ ‰์…˜ [if ์กฐ๊ฑด์‹]์€ ์˜ต์…˜ hash_table = list([0 for i in range(10)]) print(hash_table) #[0, 0, 0, 0, 0, 0, 0, 0, 0, 0] #1. ์ข…๋ฅ˜๊ฐ€ ๋‹ค๋ฅธ ๋ฐ์ดํ„ฐ์—์„œ ์ •์ˆ˜ ๋ฆฌ์ŠคํŠธ๋งŒ ๊ฐ€์ ธ์˜ค๊ธฐ dataset = [4, True, 'dave', 2.1, 3] int_data ..

Python 2024.01.31