표준 입출력
출력
print("python", "java") -> python java
print("python" + "java") -> pythonjava
print("python", "java", sep=",") -> python, java
print("python", "java", sep=" vs ") -> python vs java
print("Python", "Java", sep=",", end="?")
print("무엇이 더 재밌을까요?") -> python, java?무엇이 더 재밌을까요?
import sys
print("Python", "Java", file=sys.stdout)
print("Python", "Java", file=sys.stderr)
scores = {"수학": 0, "영어": 50, "코딩": 100}
for subject, score in scores.items():
print(subject, score) -> 수학 0
-> 영어 50
-> 코딩 100
scores = {"수학": 0, "영어": 50, "코딩": 100}
for subject, score in scores.items():
print(subject.ljust(8), str(score).rjust(4), sep=":")
-> 수학 : 0
-> 영어 : 50
-> 코딩 : 100
for num in range(1, 21):
print("대기번호 : " + str(num)) -> 대기번호 : 1
-> 대기번호 : 2 ...
-> 대기번호 : 19
-> 대기번호 : 20
for num in range(!, 21):
print("대기번호 : " + str(num).zfill(3)) -> 대기번호 : 001
-> 대기번호 : 002 ...
-> 대기번호 : 019
-> 대기번호 : 020
입력
answer = input("아무 값이나 입력하세요 : ")
print("입력하신 값은 " + answer + "입니다.")
-> 아무 값이나 입력하세요 :
-> 입력하신 값은 10입니다.
-> 아무 값이나 입력하세요 :
-> 입력하신 값은 나는나야입니다.
다양한 출력방법
print("{0}".format(500)) -> 500
print("{0: >10}".format(500)) -> ' 500'
print("{0: +>10}.format(500)) -> ' +500'
print("{0: +>10}.format(-500)) -> ' -500'
print({0:,}.format(100000000)) -> 100,000,000
print({0:+,}.format(100000000)) -> +100,000,000
print("{0:^<+20,}".format(100000000)) ->+100,000,000^^^^^^^^
print({0:f}.format(5/3)) -> 1.666667
print("{0:.2f}".format(5/3)) -> 1.67
---- {인덱스:[[빈자리채우기]정렬][기호][확보공간][콤마][.자릿수][타입]} ---
파일 입출력
입력
score_file = open("score.txt", "w", encoding="utf8")
print("math : 0", file=score_file)
print("english : 50", file=score_file)
score_file.close()
score_file = open("score.txt", "a", encoding="utf8")
score_file.write("science : 80")
score_file.write("\ncoding : 100")
score_file.close()
------- score.txt -------
math : 0
english : 50
science : 80
coding : 100
----------------------------
출력
score_file = open("score.txt", "r", encoding="utf8")
print(score_file.read())
score_file.close() -> math : 0
-> english : 50
-> science : 80
-> coding : 100
score_file = open("score.txt", "r", encoding="utf8")
print(score_file.readline())
print(score_file.readline())
print(score_file.readline()) -> math : 0
print(score_file.readline())
score_file.close() -> english : 50
-> science : 50
-> coding : 100
score_file = open("score.txt", "r", encoding="utf8")
print(score_file.readline(), end="")
print(score_file.readline(), end="")
print(score_file.readline(), end="") -> math : 0
print(score_file.readline(), end="") -> english : 50
score_file.close() -> science : 50
-> coding : 100
score_file = open("score.txt", "r", encoding="utf8")
while True:
line = score_file.readline()
if not line:
break
print(line, end="")
score_file.close() -> math : 0
-> english : 50
-> science : 80
-> coding : 100
score_file = open("score.txt", "r", encoding="utf8")
lines = score_file.readlines()
for line in lines:
print(line, end="")
score_file.close() -> math : 0
-> english : 50
-> science : 80
-> coding : 100
pickle
import pickle
profile_file = open("profile.pickle", "wb")
profile = {"이름" : "박명수", "나이" : 30, "취미" : "코딩"}
print(profile)
pickle.dump(profile, profile_file)
profile_file.close() -> 워크스페이스 내에 profile.pickle 파일 생김
profile_file = open("profile.pickle", "rb") as profile_file:
profile = pickle.load(profile_file)
print(profile)
With
with : 파일을 열고 나서 자동으로 닫아줌(close() 필요없음)
import pickle
with open("profile.pickle", "rb") as profile_file:
print(pickle.load(profile_file))
-> {'이름': '박명수', '나이': 30, '취미': '코딩'}
With open("study.txt", "w", encoding="utf8") as study_file:
study_file.write("파이썬을 열심히 공부하고 있어요.")
-> study.txt 파일 생김
with open("study.txt", "r", encoding="utf8") as study_file:
print(study_file.read())
-> 파이썬을 열심히 공부하고 있어요.