2010-06-01から1ヶ月間の記事一覧
import urllib url = "http://hoge_euc_jp.com" #ここに文字コードが euc_jp のサイトの url いれる html = urllib.urlopen(url).read() html_utf8 = html.decode("euc_jp", "ignore").encode("utf8") #変換できないエラーを"ignore"で無視する print html_u…
四捨五入 >>> round(1.4) 1.0 >>> round(1.5) 2.0 切り上げ >>> import math >>> math.ceil(1.4) 2.0 >>> math.ceil(1.5) 2.0 切り捨て 追記: 2017-12-13 >>> import math >>> math.floor(1.4) 1.0 >>> math.floor(1.5) 1.0