Introfor

4 본문

Programming_prob/Python_Challenge

4

YongArtist 2016. 11. 28. 10:03
1
2
3
4
5
6
7
8
9
10
11
12
#-*- coding: utf-8 -*-
 
__author__="Introfor"
 
import urllib, re
 
num =12345
 
while(True):
    response = urllib.urlopen("http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=%s" % num).read()
    num = "".join(re.findall(r"\d", response))
    print response
cs


'Programming_prob > Python_Challenge' 카테고리의 다른 글

3  (0) 2016.11.28
2  (0) 2016.11.21
1  (0) 2016.11.17
0  (0) 2016.11.17
Comments