Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- python os
- 정규식 활용
- grafana dashboard
- selinux port 등록
- gcc 업데이트
- regex_search
- telegraf
- 백준
- 정규식 문자열 출력
- linux시간으로 변경
- CentOS7
- influxdb 설치
- python popen
- snmp test
- snmp
- c3 second
- c3 step graph
- subporcess path
- 정규식 컴파일
- c3 축 없애기
- python subprocess
- g++ 업데이트
- c3 초
- 1697
- centos pyhon 설치
- gcc regex
- InfluxDB
- c++ 정규식
- c3 축 가리기
- semanage
Archives
- Today
- Total
리셋 되지 말자
[python 문법] print 본문
# print
# 콤마로 구분
print('A1', 'A2')
# sep 파라미터로 구분
print('A1', 'A2', sep=',')
# 줄바꿈 안하도록 end를 공백으로 설정
print('aa', end=' ')
print('bb')
# join을 이용한 list 출력
l = ['A', 'B', 'C']
print(''.join(l))
print(' '.join(l))
# fotmat을 이용한 출력
idx = 1
fruit = 'Apple'
print('{0}: {1}'.format(idx+1, fruit))
print('{}: {}'.format(idx+1, fruit))
# f-string을 이요한 출력 (python 3.6+ 지원)
print(f'{idx+1}: {fruit}')
'Python' 카테고리의 다른 글
[python 문법] locals (0) | 2021.04.28 |
---|---|
[python 문법] pass (0) | 2021.04.28 |
[python 문법] 나눗셈 (0) | 2021.04.28 |
[python 문법] range (0) | 2021.04.28 |
[python 공부] 파이썬 순열, 조합 (0) | 2021.04.09 |
Comments