# 출력 형식
Python 프로그래밍에서는 다양한 방식으로 출력 형식을 지정할 수 있습니다. 아래에서 몇 가지 코딩 예제를 참조하세요.
# Example 1
다음 예제는 두 개의 부동 소수점 숫자를 더하는 예제입니다. 덧셈 연산을 수행한 후 format() 메서드를 사용하여 소수점 이하 2자리까지 결과의 서식을 지정했습니다.
# Formatting output for floating-point addition
x = input("Enter value of a: ")
a = float(x)
y = input("Enter value of b: ")
b = float(y)
sum = a + b;
result = format(sum, '.2f') # formatting result up to 2 decimal places
print("\nSUM:", result)
print("\nSUM: %.2f" % sum) # alternative option using % operator (old style)
출력:
Enter value of a: 23.65258923
Enter value of b: 32.21237196
SUM: 55.86
SUM: 55.86
# 예제 2
다음 예는 기본, 위치 및 키워드 인수를 사용하여 format() 메서드를 사용한 기본 서식을 보여줍니다.
# Default arguments
print("Hi {}, your semester grade is {}.".format("Robin Smith", 8.92))
# Positional arguments
print("Hi {0}, your semester grade is {1}.".format("Robin Smith", 8.92))
# Keyword arguments
print("Hi {name}, your semester grade is {grade}.".format(name="Robin Smith", grade=8.92))
# Mixed arguments
print("Hi {0}, your semester grade is {grade}.".format("Robin Smith", grade=8.92))
출력:
Hi Robin Smith, your semester grade is 8.92.
Hi Robin Smith, your semester grade is 8.92.
Hi Robin Smith, your semester grade is 8.92.
Hi Robin Smith, your semester grade is 8.92.
# 예 3
다음 예에서는 출력 서식에 키워드 인수인 "sep=
# Using sep=<str> keyword argument
data = {'hello': 1, 'hi': 2, 'bye': 3}
print("Example of sep=<str>")
for k, v in data.items():
print(k, v, sep=' -> ')
# Using end=<str> keyword argument
print("\\nExample of end=<str>")
for n in range(10):
print(n, end=(' ' if n < 9 else '\\n'))
출력:
Example of sep=<str>
hello -> 1
hi -> 2
bye -> 3
Example of end=<str>
0 1 2 3 4 5 6 7 8 9