0w0

[BASIC] 파이썬 문자열 포맷 format {}, 형식지정% 본문

Coding/Python

[BASIC] 파이썬 문자열 포맷 format {}, 형식지정%

0w0 2020. 11. 17. 17:50
728x90
반응형
#문자열 포맷
print('a'+'b')
print('a','b')

print('1. 형지정 % 방법')
print('거북이는 %d살' %20)
print('배고파서 %s를 먹었음' %'참치김밥')
print('Apple은 %c로 시작하는 %s 제품' %('A','감성'))
print()


print('2. format {} 방법')
print('거북이는 {}살'.format(20))
print('배고파서 {}를 먹었음'.format('참치김밥'))
print('Apple은 {}로 시작하는 {} 제품'.format('A','감성'))
print('Apple은 {0}로 시작하는 {1} 제품'.format('A','감성'))
print('Apple은 {1}로 시작하는 {0} 제품'.format('A','감성'))
print()


print('3. format {변수} 방법')
print("거북이 {age}살이며, {color}색을 좋아함".format(age=30, color='검정'))
print("거북이 {age}살이며, {color}색을 좋아함".format(color='검정', age=30))
print()


print('4. format {}')
age=10
color='노랑'
print(f"거북이는 {age}살이며, {color}색을 좋아함")


#출력형태
C:\Users\hotsk\Anaconda3\envs\Repeat\python.exe C:/Workspace/repeat/helloworld.py
ab
a b
1. 형지정 % 방법
거북이는 20살
배고파서 참치김밥를 먹었음
Apple은 A로 시작하는 감성 제품

2. format {} 방법
거북이는 20살
배고파서 참치김밥를 먹었음
Apple은 A로 시작하는 감성 제품
Apple은 A로 시작하는 감성 제품
Apple은 감성로 시작하는 A 제품

3. format {변수} 방법
거북이 30살이며, 검정색을 좋아함
거북이 30살이며, 검정색을 좋아함

4. format {}
거북이는 10살이며, 노랑색을 좋아함

Process finished with exit code 0
728x90
반응형
Comments