본문 바로가기
프로그래밍 기초/Python

[Python] 입출력 (stdin, stdout)

by ITPro 2016. 3. 1.

import sys


i=0.5353

s="text"

t=sys.argv[0]   #명령줄 인수를 읽어옴


print "Hello World %.2f %d" % (i,2016)

# 파이썬 3에서는 print 다음에 ()가 들어감 ex: print("Hello World %.2f %d" % (i,2016))


print "file name is %s" % (t)


print format(i,"10.2f"),format(s,"20s"),"123"   #format 함수의 2번째 인자는 포맷지정자


sys.stdout.write("input : ")

t=sys.stdin.readline()


print t


t= raw_input("input : ")

  # input("input : ") #파이썬3

print t

반응형

'프로그래밍 기초 > Python' 카테고리의 다른 글

[Python] 집합 (데이터 순서 없음, 중복값 없음)  (0) 2016.03.02
[Python] 사전  (0) 2016.03.02
[Python] 리스트  (0) 2016.03.02
[Python] 반복문  (0) 2016.03.02
[Python] 조건문  (0) 2016.03.02

바로가기