336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
#! -*- coding: utf-8 -*-
import urllib
import re
print "we will try to open this url, in order to get IP address"
url="http://checkip.dyndns.org"
print url
request=urllib.urlopen(url).read()
theIP=re.findall(r"\d{1,3}\.\d{1,3}\.\d{1,3}.\d{1,3}",request)
print "your IP Address is:", theIP
'Python' 카테고리의 다른 글
IMDB.py (0) | 2015.02.08 |
---|---|
hanGame.py (0) | 2015.02.08 |
fahToCel.py (0) | 2015.02.08 |
celToFah.py (0) | 2015.02.08 |
webSource.py (0) | 2015.02.08 |