728x90

https://docs.python.org/3/whatsnew/3.8.html

 

Whatโ€™s New In Python 3.8 โ€” Python 3.10.5 documentation

Whatโ€™s New In Python 3.8 Editor Raymond Hettinger This article explains the new features in Python 3.8, compared to 3.7. Python 3.8 was released on October 14, 2019. For full details, see the changelog. Summary โ€“ Release highlights New Features Assignm

docs.python.org

์œ„์น˜ ์ „์šฉ ๋งค๊ฐœ ๋ณ€์ˆ˜

์ผ๋ถ€ ํ•จ์ˆ˜ ๋งค๊ฐœ ๋ณ€์ˆ˜๋ฅผ ์œ„์น˜์ ์œผ๋กœ ์ง€์ •ํ•ด์•ผ๋งŒ ํ•˜๊ณ  ํ‚ค์›Œ๋“œ ์ธ์ž๋กœ ์‚ฌ์šฉํ•  ์ˆ˜ ์—†๋„๋ก ์ง€์‹œํ•˜๋Š” ์ƒˆ๋กœ์šด ํ•จ์ˆ˜ ๋งค๊ฐœ ๋ณ€์ˆ˜ ๋ฌธ๋ฒ• / ์ด ์žˆ์Šต๋‹ˆ๋‹ค. ์ด๊ฒƒ์€ Larry Hastings์˜ Argument Clinic ๋„๊ตฌ๋กœ ์–ด๋…ธํ…Œ์ดํŠธ๋œ C ํ•จ์ˆ˜๋“ค์— ๋Œ€ํ•ด help()๊ฐ€ ๋ณด์—ฌ์ฃผ๋Š” ๊ฒƒ๊ณผ ๊ฐ™์€ ํ‘œ๊ธฐ๋ฒ•์ž…๋‹ˆ๋‹ค.

๋‹ค์Œ ์˜ˆ์—์„œ, ๋งค๊ฐœ ๋ณ€์ˆ˜ a์™€ b๋Š” ์œ„์น˜ ์ „์šฉ์ด๋ฉฐ, c๋‚˜ d๋Š” ์œ„์น˜๋‚˜ ํ‚ค์›Œ๋“œ์ผ ์ˆ˜ ์žˆ์œผ๋ฉฐ, e๋‚˜ f๋Š” ํ‚ค์›Œ๋“œ ์ „์šฉ์ด์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค:

def f(a, b, /, c, d, *, e, f):
    print(a, b, c, d, e, f)

๋‹ค์Œ์€ ์œ ํšจํ•œ ํ˜ธ์ถœ์ž…๋‹ˆ๋‹ค:

f(10, 20, 30, d=40, e=50, f=60)

ํ•˜์ง€๋งŒ, ๋‹ค์Œ์€ ์ž˜๋ชป๋œ ํ˜ธ์ถœ์ž…๋‹ˆ๋‹ค:

f(10, b=20, c=30, d=40, e=50, f=60)   # b cannot be a keyword argument
f(10, 20, 30, 40, 50, f=60)           # e must be a keyword argument

์ด ํ‘œ๊ธฐ๋ฒ•์˜ ํ•œ ๊ฐ€์ง€ ์‚ฌ์šฉ ์‚ฌ๋ก€๋Š” ์ˆœ์ˆ˜ ํŒŒ์ด์ฌ ํ•จ์ˆ˜๊ฐ€ ๊ธฐ์กด C ์ฝ”๋“œ ํ•จ์ˆ˜์˜ ๋™์ž‘์„ ์™„์ „ํžˆ ํ‰๋‚ด ๋‚ผ ์ˆ˜ ์žˆ๋‹ค๋Š” ๊ฒƒ์ž…๋‹ˆ๋‹ค. ์˜ˆ๋ฅผ ๋“ค์–ด, ๋‚ด์žฅ divmod() ํ•จ์ˆ˜๋Š” ํ‚ค์›Œ๋“œ ์ธ์ž๋ฅผ ํ—ˆ์šฉํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค:

def divmod(a, b, /):
    "Emulate the built in divmod() function"
    return (a // b, a % b)

 

#  '/' ์ด ํ›„์˜ ํŒŒ๋ผ๋ฏธํ„ฐ๋Š” ์œ„์น˜(์–ด๋””๋“  ์ƒ๊ด€์—†์Œ), ํ‚ค์›Œ๋“œ(args๋‚˜ kwargs) ์ผ ์ˆ˜ ์žˆ๋‹ค.  

# '*' ์ด ํ›„์˜ ํŒŒ๋ผ๋ฏธํ„ฐ๋Š”  ํ‚ค์›Œ๋“œ์—ฌ์•ผ ํ•œ๋‹ค.

 

๋ฐ˜์‘ํ˜•
๋‹คํ–ˆ๋‹ค