ํ์ค ์ ์ถ๋ ฅ #sep, end print("python","java", sep=" vs ") #sep๊ฐ์ ์ค์ ํด์ ๊ฐ , ์ฌ์ด์ ๋ฃ์ ์ ์์ print("python","java", sep=" , " , end = "?") #end์ ์๋ฏธ๋ ๋ฌธ์ฅ์ ๋ง์ง๋ง์ ?๋ก ํด๋ฌ๋ผ. #์ข์ฐ์ ๋ ฌ(rjust(), ljust()) scores = {"์ํ":0, "์์ด":50, "์ฝ๋ฉ":100} for subject, score in scores.items(): print(subject, score) print(subject.ljust(8), str(score).rjust(4), sep=":") #๊ณผ๋ชฉ ์ผ์ชฝ์ผ๋ก ์ ๋ ฌํ๋๋ฐ, 8์นธ ๋จ๊ธฐ๊ณ ์ ๋ ฌํด๋ฌ๋ผ / score ๋ถ๋ถ์ ์ค๋ฅธ์ชฝ ์ ๋ ฌํ๋๋ฐ 4์นธ ๊ณต๊ฐ ํ๋ณด #1์ 001๋ก ๋ง..