# multiline
print("=" * 70)
print({0:^50}.format[hello])
print("=" * 70)
<
가운데 정렬
>>> "{0:^10}".format("hi") ' hi ':^ 기호를 사용하면 가운데 정렬도 가능하다.
저렇게하면 가운데 정렬되야되는거아니야?
근데 run 누르니깐 안돼
# multiline
print("=" * 70)
print({0:^50}.format[hello])
print("=" * 70)
<
가운데 정렬
>>> "{0:^10}".format("hi") ' hi ':^ 기호를 사용하면 가운데 정렬도 가능하다.
저렇게하면 가운데 정렬되야되는거아니야?
근데 run 누르니깐 안돼
print("{0:^50}".format("hello"))
오 ㄳ