1
にurllib.requestに変換私は、次の後に整数に値us_price
を変換することができアム:整数
import urllib.request
page = urllib.request.urlopen ("http://au.finance.yahoo.com/q?s=AUDUSD=X")
text = page.read().decode("utf8")
where1 = text.find('yfs_l10_audusd=x">')
start_of_us_price = where1 + 18
end_of_us_price = start_of_us_price + 6
us_price = text[start_of_us_price:end_of_us_price]
私はあなたがおそらくfloat(us_price)
を使用する必要があり、無駄
「print(type(us_price))」と「print(us_price)」の出力は何ですか? –