python的應用
用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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- redis在python中的應用RedisPython
- python中 __call__ 的應用Python
- Python的sorted函式應用Python函式
- [Python]OS模組應用Python
- python基礎應用Python
- python網路爬蟲應用_python網路爬蟲應用實戰Python爬蟲
- 如何部署你的python web應用(二)PythonWeb
- Python/Sqlite 程式:瀏覽器應用還是桌面應用?PythonSQLite瀏覽器
- Python中的numba的基本應用!讓你的Python快一萬倍!Python
- Python應用01 原始Python伺服器Python伺服器
- python應用資料科學的優勢Python資料科學
- 分享Python的5種高階特徵應用Python特徵
- python中文分詞jieba的高階應用Python中文分詞Jieba
- 熱門 Python 應用 The Fuck 是如何工作的Python
- 邊框檢測在 Python 中的應用Python
- Docker容器化部署Python應用DockerPython
- python應用於哪些方面Python
- python應用:異常處理Python
- Python Web 應用:WSGI基礎PythonWeb
- python幾個應用例項Python
- 在Python應用中使用MongoDBPythonMongoDB
- Python 應用剖析工具介紹Python
- 使用 mock 測試 python 應用MockPython
- python閉包 - 理解與應用Python
- 【Python】python連結串列應用原始碼示例Python原始碼
- Python for Android,將你的Python應用打包為APK檔案PythonAndroidAPK
- Python中lambda表示式的語法與應用Python
- python機器學習庫scikit-learn:SVR的基本應用Python機器學習VR
- 詳解Python中sys模組的功能與應用Python
- 《探索Python Requests中的代理應用與實踐》Python
- React/Vue 實現的前端應用, java/Go/Python 實現的後端應用,前後端分離的應用部署的最佳實踐ReactVue前端JavaGoPython後端
- Python基礎語法及應用Python
- 聊聊 Python 的應用 - 健壯高效的網路爬蟲Python爬蟲
- Python退火演算法在高次方程的應用Python演算法
- python上下文管理器closing的應用Python
- python word 應用,設定 word 文件的內容格式Python
- Python字典的各種操作新增/修改/更新等應用Python
- 6個最佳的開源Python應用伺服器Python伺服器