Home
Pioneergu
Cancel

Python - print()로 파일에 출력하기 (sys.stdout - redirection)

print() 함수로 파일에 기록(출력)하기 print() 함수를 사용하면 기본적으로 콘솔창에 출력이 된다. 그런데 이걸 파일에 기록하고 싶을 때가 있는데 이 때에는 sys.stdout을 redirection 해 주면 된다. 아래의 예제코드를 보자. import sys original_stdout = sys.stdout # original ...

Python sys.stdout.flush()

print function 아래의 help(print)를 보면 print() 함수는 default로 줄바꿈을 해준다. help(print) Help on built-in function print in module builtins: print(...) print(value, ..., sep=' ', **end='\n'**, f...

Python Sequences

Sequence Type Python의 Sequence type은 Mutable과 Immutable Sequence Type으로 나뉜다. Immutable Sequence Type에는 String과 Tuple이 있다. Mutable Sequences Immutable Sequences ...

Jekyll 테마를 이용해 GitHub 블로그 만들기

Github Blog (with jekyll theme) 사용 이유 뭔가 멋들어진 이유가 있기보단.. 프로그래머분들의 Blog를 보다보면 많은 분들이 GitHub blog를 사용하고 계셔서 관심이 생기게 되었다. 비록 전공자는 아니지만 기왕 Programming을 배우기 시작한거 Git도 배워볼겸 GitHub blog를 만들어보기로 마음을 먹게 ...