# Chapter02-1
# 파이썬 완전 기초
# Print 사용법
# 참조 : https://www.python-course.eu/python3_formatted_output.php
# 기본 출력
print('기본 출력')
print('Python Start')
print("Python Start")
print('''Python Start''')
print("""Python Start""")
print()
# seperator 옵션
print('seperator 옵션')
print('P', 'Y', 'T', 'H', 'O', 'N', sep='')
print('P', 'Y', 'T', 'H', 'O', 'N', sep=' ')
print('P', 'Y', 'T', 'H', 'O', 'N', sep='-')
print()
# end 옵션
print('end 옵션')
print('Welcom to', end=' ')
print('IT News', end=' ')
print('WebSite')
print()
# file 옵션
print('file 옵션')
import sys
print('Learn Python', file=sys.stdout) #콘솔창 출력
print()
# format 옵션 (d : 정수, s : 문자열, f : 실수)
print('format 옵션')
print('%s %s' % ('one', 'two'))
print('{} {}'.format('one', 'two'))
print('{1} {0}'.format('one', 'two'))
# %s
print('%s 예제')
print('%10s' % ('nice')) #우측정렬
print('{:>10}'.format('nice'))
print('%-10s' % ('nice')) #좌측정렬
print('{:10}'.format('nice'))
print('{:<10}'.format('nice'))
print('{:^10}'.format('nice')) #중앙 정렬
print('{:_<10}'.format('nice')) #공백 채우기
print('{:$<10}'.format('nice'))
print('%5s' % ('pythonstudy'))
print('%.5s' % ('pythonstudy')) #절삭
print('{:5} {:.5}'.format('pythonstudy', 'pythonstudy'))
print('%10.5s' % 'pythonstudy')
print()
# %d
print('%d 예제')
print('%d %d' % (1, 2))
print('{} {}'.format(1, 2))
#print('{:4.2d}'.format(4200)) #에러
print("%4d %4.2d" % (4200, 4200))
print('{:<4d} {:<2d}'.format(4200, 4200))
print()
# %f
print('%f 예제')
print('%f' % (3.1415920000))
print('{:f}'.format(3.1415920000))
print('%06.2f' % (3.141592653589793)) # 전체자리수.소수점자리수
print('{:06.2f}'.format(3.141592653589793))
'♣ 개발 > Python' 카테고리의 다른 글
딕셔너리( Dictionary) (0) | 2021.03.05 |
---|