
[Version] 3.12 rc (Release Candidates) (1) - f-string
ยท
๐ Python
Python 3.11 -> 3.12 ๋ณํ 1. Nested quote character f-string ์ฌ์ฉ์ ์์ ๋ฐ์ดํ(')๋ก dictionary์ item์ ์ ๊ทผ์ด ๊ฐ๋ฅํ์ง๋ง ํฐ ๋ฐ์ดํ(")๋ก๋ Error๊ฐ ๋๋ค. [3.11] fruit = { "name" : "apple", "price" : 3000 } f"{fruit['name']}" # apple f"{fruit["name"]}" # Syntax Error [3.12] fruit = { "name" : "apple", "price" : 3000 } f"{fruit['name']}" # apple f"{fruit["name"]}" # apple 2. f-string ์์ ์ฃผ์ ์ฌ์ฉ [3.11] fruit = { "name" : "apple", ..