《Head First Programming》---python 3_함수.
872 단어 함수.
import urllib.request
import time
def get_price():
page = urllib.request.urlopen("http://www.laofengxiang.com/index.php")
text = page.read().decode("utf8")
#print(text)
where = text.find(" : ")
#print(where)
start_of_price = where + 4;
#print(start_of_price)
end_of_price = start_of_price + 3
#print(end_of_price)
#print(text[start_of_price:end_of_price])
return (text[start_of_price:end_of_price])
price_now = input("Do you want to see the price now (Y/N) ? ")
if price_now == "Y":
print(get_price())
else:
price = float(get_price())
while price > 499.9:
time.sleep(3600) # 1
price = float(get_price())
print("Price is ", price, " / ")
print("Buy for my lover!")
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
예를 들어 urlopen의 데이터 사용법데이터 매개 변수는 선택할 수 있습니다. 데이터를 추가하려면 바이트 인코딩 형식의 내용, 즉bytes 형식이면bytes () 함수를 통해 전환할 수 있습니다. 또한 이 데이터 매개 변수를 전달하면 GET 방식으로 요...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.