Python
[Python] ํ์ผ ์ ์ถ๋ ฅ - with๋ฌธ๊ณผ ํจ๊ป ์ฌ์ฉํ๊ธฐ
์ฝ๋ฉํ๋ ๋ถ์ด
2021. 3. 23. 01:11
๋ฐ์ํ
f = open("foo.txt", 'w')
f.write("Life is too short, you need python")
f.close()
์ด๋ ๊ฒ ํ์ผ์ ์ด๊ณ ๋ซ๋ ๊ฒ์ ์๋์ผ๋ก ์ฒ๋ฆฌํ ์ ์๋ค๋ฉด ํธ๋ฆฌํ๋ค.
ํ์ด์ฌ์ with๋ฌธ์ด ๋ฐ๋ก ์ด๋ฐ ์ญํ ์ ํด ์ค๋ค.
with open("foo.txt", "w") as f:
f.write("Life is too short, you need python")
with ๋ธ๋ก์ ๋ฒ์ด๋๋ ์๊ฐ ์ด๋ ค์๋ ํ์ผ ๊ฐ์ฒด f๊ฐ ์๋์ผ๋ก close๋๋ค.
๋ฐ์ํ