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

7번째 줄: 7번째 줄:
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<source lang='Python'>
print( "HELLO".isupper() );
print( "Hello".isupper() );
print( "Hello".isupper() );
print( "HELLO".isupper() );
print( "hello".isupper() );
print( "hello".isupper() );
# True
# False
# False
# True
# False
# False
</source>
</source>

2015년 4월 12일 (일) 14:50 판

isupper


1 Python

print( "HELLO".isupper() );
print( "Hello".isupper() );
print( "hello".isupper() );
# True
# False
# False

2 같이 보기

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