python padding >, <
2019. 8. 2. 14:51ㆍPL/Python
print("Product: {name:<10s}, Price per unit: {price:10.5f}."
.format(name="Apple", price=5.243))
예를 들어 다음과 같은 코드가 있다면, <은 10칸을 띄워서 앞에서부터 str을 채워넣는다
결과: Product: Apple , Price per unit: 5.24300.
반대로 >은 10칸을 띄지만 뒤에서부터 str을 채워넣는다
결과: Product: Apple, Price per unit: 5.24300.
[추가] 가운데 정렬은 ^
print("{0:^10}".format("hi"))
'PL > Python' 카테고리의 다른 글
python 256과 257 (0) | 2019.08.04 |
---|---|
리스트 연산 (0) | 2019.08.03 |
연결해서 print하기 (0) | 2019.08.02 |
실수형 문자열을 정수로 바꿀 때 (0) | 2019.08.01 |
윈도우 cmd 창에서 Python 실행하기 (0) | 2019.07.30 |