CodingTest

[파이썬 코딩 도장] 43.6 심사문제: URL 검사하기

nineDeveloper 2020. 12. 18.
728x90

정답

import re
p = re.compile('^(https?://)[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+/[a-zA-Z0-9-_/.?=]*')
print(p.match(input()) != None)
728x90

댓글

💲 추천 글