"함수 center()"의 두 판 사이의 차이

(새 문서: category: String ;center ==Python== category: Python <source lang='Python'> values = (1, 42, 1004, 'abc', 'hello') for value in values: print( str(value).center(6) ) ''' ...)
 
 
(사용자 2명의 중간 판 4개는 보이지 않습니다)
1번째 줄: 1번째 줄:
[[category: String]]
[[category: String]]
{{다른뜻|HTML center 태그}}
;center
;center


==Python==
==Python==
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<syntaxhighlight lang='Python'>
values = (1, 42, 1004, 'abc', 'hello')
values = (1, 42, 1004, 'abc', 'hello')
for value in values:
for value in values:
15번째 줄: 16번째 줄:
hello  
hello  
'''
'''
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[zfill]]
*[[함수 rjust()]] - 왼쪽에 공백 추가하여 오른쪽 정렬
*[[center]]
*[[함수 zfill()]] - 왼쪽에 0 추가

2021년 10월 4일 (월) 04:08 기준 최신판

  다른 뜻에 대해서는 HTML center 태그 문서를 참조하십시오.
center

1 Python[ | ]

values = (1, 42, 1004, 'abc', 'hello')
for value in values:
    print( str(value).center(6) )
'''
  1   
  42  
 1004 
 abc  
hello 
'''

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}