04์ฅ ์ฐ์ต๋ฌธ์
Q5
๋ค์์ "test.txt"๋ผ๋ ํ์ผ์ "Life is too short" ๋ฌธ์์ด์ ์ ์ฅํ ํ ๋ค์ ๊ทธ ํ์ผ์ ์ฝ์ด์ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ด๋ค.
f1 = open("test.txt", 'w')
f1.write("Life is too short")
f2 = open("test.txt", 'r')
print(f2.read())
์ด ํ๋ก๊ทธ๋จ์ ์ฐ๋ฆฌ๊ฐ ์์ํ "Life is too short"๋ผ๋ ๋ฌธ์ฅ์ ์ถ๋ ฅํ์ง ์๋๋ค. ์ฐ๋ฆฌ๊ฐ ์์ํ ๊ฐ์ ์ถ๋ ฅํ ์ ์๋๋ก ํ๋ก๊ทธ๋จ์ ์์ ํด ๋ณด์.
ํ์ด: ๋ซ์์ค์ผ!
f1 = open("test.txt", 'w')
f1.write("Life is too short")
f1.close()
f2 = open("test.txt", 'r')
print(f2.read())
f2.close()
Q6
์ฌ์ฉ์์ ์ ๋ ฅ์ ํ์ผ(test.txt)์ ์ ์ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด ๋ณด์. (๋จ ํ๋ก๊ทธ๋จ์ ๋ค์ ์คํํ๋๋ผ๋ ๊ธฐ์กด์ ์์ฑํ ๋ด์ฉ์ ์ ์งํ๊ณ ์๋ก ์ ๋ ฅํ ๋ด์ฉ์ ์ถ๊ฐํด์ผ ํ๋ค.)
ํ์ด:
user_input = input("์ ์ฅํ ๋ด์ฉ์ ์
๋ ฅํ์ธ์: ")
f = open('test.txt','a')
f.write(user_input)
f.write("\n")
f.close()
Q7
๋ค์๊ณผ ๊ฐ์ ๋ด์ฉ์ ์ง๋ ํ์ผ test.txt๊ฐ ์๋ค. ์ด ํ์ผ์ ๋ด์ฉ ์ค "java"๋ผ๋ ๋ฌธ์์ด์ "python"์ผ๋ก ๋ฐ๊พธ์ด์ ์ ์ฅํด ๋ณด์.
Life is too short you need java
โป replace ํจ์๋ฅผ ์ฌ์ฉํด ๋ณด์.
f = open('test.txt','r')
body = f.read()
f.close()
body = body.replace('java','python')
f = open('test.txt','w')
f.write(body)
f.close()
'Coding > Code in the Morning' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
211123_Code int the morning (0) | 2021.11.23 |
---|---|
211103_Code in the morning (0) | 2021.11.03 |
211029_Code in the morning (0) | 2021.10.29 |
211027_Code in the morning (0) | 2021.10.27 |
211026_Code in the morning (0) | 2021.10.26 |