๋ฐ์ํ
250x250
Notice
Recent Posts
- Today
- Total
๋ชฉ๋กํ์ด์ฌ format (1)
DATA101
์๋ ํ์ธ์, ์ค๋์ ํ์ด์ฌ f-string ๋ฌธ๋ฒ์ ๋ํด ๊ฐ๋จํ๊ฒ ์์๋ณด๊ฒ ์ต๋๋ค. f-string ์ด๋? f-string๋ ์ต๊ทผ์ ๋์จ ๋ฌธ์์ด ํฌ๋งทํ ๊ตฌ๋ฌธ์ผ๋ก์ formatted string literals์ด๋ผ๊ณ ๋ถ๋ฆ ๋๋ค. ๊ธฐ์กด์ % ํฌ๋งทํ ์ด๋ format ๋ฌธ์์ด ๊ตฌ๋ฌธ์ ์ฌ์ ํ ๊ฐ๋ ์ฑ์ ๋ฌธ์ ๊ฐ ์์์ต๋๋ค. name = 'Tony Park' major = 'Computer Science' city = 'Seoul' message = 'Hi, this is %s. My major is %s and I\'m living in %s.' %(name, major, city) print(message) # Hi, this is Tony Park. My major is Computer Science and I'm li..
SW ๊ฐ๋ฐ/Python
2021. 4. 20. 09:26