일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- codesingal
- adjacentElementsProduct
- collections.deque
- shapeArea
- cpp
- All Longest Strings
- Counting cells in a blob
- Numpy
- Sequential Search
- data_structure
- markdown
- codesignal
- til
- 2750
- 파이썬머신러닝완벽가이드
- 10953
- almostIncreasingSequence
- 파이썬 포렌식
- C++
- centuryFromYear
- 수 정렬하기
- baekjun
- recursion
- 백준
- 피보나치 수
- Daily Commit
- matrixElementsSum
- Python
- flask
- 2015 봄학기 알고리즘
Archives
- Today
- Total
Introfor
2 본문
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import urllib2 url = "http://www.pythonchallenge.com/pc/def/ocr.html" # url 값 str로 저장 response = urllib2.urlopen(url).read() # urlopen으로 url을 열고 read로 값을 읽은 후 response에 저장 string = response[response.rindex('<!--'):response.rindex('-->')] # 뒤에서 부터 <!--의 인덱스와 -->이 위치한 인덱스의 값을 통해 슬라이싱 # 한 후에 string에 저장 result='' for i in string: #isalpha()는 알파벳이면 true를 반환하는데 string에 알파벳이 있으면 result에 문자를 추가 if i.isalpha(): result +=i print result | cs |
urllib2을 처음 써보는데 되게 흥미롭다. 앞으로 자주 보게 되면 좋겠는데..
'Programming_prob > Python_Challenge' 카테고리의 다른 글
4 (0) | 2016.11.28 |
---|---|
3 (0) | 2016.11.28 |
1 (0) | 2016.11.17 |
0 (0) | 2016.11.17 |
Comments