移転しました。

*[python]短縮URLを展開する。 >|python| import sys import urllib2 URL = "http://t.co/lWhYkfyK" url = urllib2.urlopen(URL).geturl() print url ||<