print문을 이용해 python에서 출력하는 여러가지 방법들 정리
print('A1', 'B2')
# A1 B2
p
print('A1', 'B2', sep=',')
# A1, B2
print('aa', end=' ' )
print('bb')
# aa bb
a = ['A', 'B']
print(' '.join(a))
# A B
idx = 1
fruit = "Apple"
print('{0}: {1}'.format(idx + 1, fruit))
# 2: Apple
print('{}: {}'.format(idx + 1, fruit))
# 2: Apple
print(f'{idx+1}: {fruit}')
# 2: Apple
- f-string은 파이썬 3.6+에서만 지원한다.
'프로그래머 > Python' 카테고리의 다른 글
[Python] 딕셔너리(dictionary) | Ordereddict(), defaultdict(), Counter() (0) | 2021.02.01 |
---|---|
[Python] 파이썬 문법 - is 와 ==의 차이 | python is & == (0) | 2021.02.01 |
[Python] range | generator의 방식을 활용하는 대표적 함수 (0) | 2021.01.31 |
[파이썬] 타입 힌트 | Type Hint | PEP 484 (0) | 2021.01.31 |
[selenium] “Element Is Not Clickable at Point” 해결법 | 팝업창 전환 (0) | 2021.01.15 |