1 Python[ | ]

Python
CPU
0.0s
MEM
8M
0.0s
Copy
print('world'.endswith('world')); # True
print('hello world'.endswith('world')); # True
print( 'hello worl'.endswith('hello') ); # False
True True False
Python
CPU
0.0s
MEM
8M
0.0s
Copy
# handmade for fun
import re
def my_endswith(needle, haystack):
return not not re.match(r'.*'+needle+'$', haystack)
print(my_endswith('world', 'world')); # True
print(my_endswith('world', 'hello world')); # True
print(my_endswith('world', 'hello worl')); # False
True True False
2 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.
- 분류 댓글:
- Python (25)
- 정규표현식 (1)
리눅스 Python 2.7 컴파일 설치 ― …리눅스 Python 2.7 컴파일 설치 ― …리눅스 Python 2.7 컴파일 설치 ― …리눅스 Python 2.7 컴파일 설치 ― …리눅스 Python 2.7 컴파일 설치 ― Jmnote리눅스 Python 2.7 컴파일 설치 ― ㅇㅇㅇ미운코딩새끼 ― 승호 도령미운코딩새끼 ― 불탄고등어미운코딩새끼 ― 김레이미운코딩새끼 ― 호박이미운코딩새끼 ― Junhg0211미운코딩새끼 ― 김왼손미운코딩새끼 ― 용딘이미운코딩새끼 ―Pinkcrimson
유기농냠냠파이썬 ― 호박유기농냠냠파이썬 ― 이에스유기농냠냠파이썬 ― 이승현파이썬 global ― Jmnote파이썬 global ― John Jeong파이썬 global ― Jmnote파이썬 global ― John Jeong파이썬 global ― John Jeong파이썬 global ― John Jeong파이썬 global ― Jmnote파이썬 global ― John Jeong