python的應用

chatGPT發表於2023-03-01

用Python寫一個雙色球選號的遊戲並執行它

# 雙色球選號遊戲
import random
 
# 定義紅球數字範圍
red_balls = range(1, 34)
 
# 定義藍球數字範圍
blue_balls = range(1, 17)
 
# 生成6個紅球
red_balls_number = random.sample(red_balls, 6)
 
# 生成1個藍球
blue_balls_number = random.sample(blue_balls, 1)
 
# 排序
red_balls_number.sort()
 
# 列印結果
print('您的雙色球號碼為:' + str(red_balls_number) + ' + ' + str(blue_balls_number))

用Python寫一個抓取商品詳情頁的程式碼並執行它

import requests
from bs4 import BeautifulSoup
 
# 請求URL
url = '
 
# 得到頁面的內容
headers={'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36'}
html=requests.get(url,headers=headers,timeout=10).text
 
# 透過content建立BeautifulSoup物件
soup = BeautifulSoup(html, 'lxml')
 
# 獲取商品的標題
title = soup.find('div',class_="sku-name").text.strip()
 
# 獲取商品的價格
price = soup.find('span',class_="price-type").text.strip()
 
# 獲取商品的評論數量
comment = soup.find('span', class_="comment-count").text.strip()
 
# 列印結果
print('商品標題:', title)
print('商品價格:', price)
print('商品評論數:', comment)

瞭解更多




來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70026630/viewspace-2937586/,如需轉載,請註明出處,否則將追究法律責任。

相關文章