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

17번째 줄: 17번째 줄:
==Python==
==Python==
[[category: Python]]
[[category: Python]]
{{참고|Python ucwords()}}
{{참고|Python title()}}
{{참고|Python title()}}
<source lang='Python'>
<source lang='Python'>

2020년 1월 23일 (목) 11:46 판

title()
ucwords()

1 PHP

echo ucwords('hello, world!');
# Hello, World!
echo ucwords('FooBar');
# FooBar

2 Python

print( 'hello, world!'.title() )
# Hello, World!
print( 'FooBar'.title() )
# Foobar

3 같이 보기

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