-
11 - formatPython 2020. 7. 20. 12:41
format
출력 형식(서식) 지정한다.
1) format의 사용방법 : {}
- {} 사이에 공백이 있으면 안 된다. { } x
- python3 이후방식은 print("출력 형식".format(데이터)
- ex) print("{}".format("test"))
2) format의 사용방법: {} 안에 형식 지정하
- print("{:d}".format(1000)) # decimal은 정수 출력
- print("{:f}".format(1000.12)) # float은 실수 출력
- print("{:F}".format(1000.12)) # 대문자 float 또한 실수 출력
{} 형식에서 2진수는 대문자 출력 안됨
에러 발생! print("{B}".format(10))
print("{:b}".format(10)) # 1010
print("{:b}".format(12)) # 1100
print("{:o}".format(12)) # 14
print("{:O}".format(12)) # 14
print("{:x}".format(12)) # c
print("{:X}".format(12)) # Cpython3.x 이전에 사용하던 방식
% 부호는 format방법을 정의하라는 의미
%로 구분하여 출력, print("출력형식" % 데이터)
ex) print("%s" % "12.2")'Python' 카테고리의 다른 글
13 - 논리 연산자 (0) 2020.07.20 12 - 비교/관계 연산자 (0) 2020.07.20 10 - bool형 (0) 2020.07.09 09 - 사칙연산 (0) 2020.07.09 08 - 변수 사용 (0) 2020.07.07