Python安裝與小demo測試

2021-07-25 13:40:48 字數 1732 閱讀 2810

兩個都是預設安裝,位置可以設定到d盤

配置環境變數 path 裡面新增python的安裝位置,如:d:\python27

cmd下檢視是否安裝成功,輸入python回車,會有相應的版本號和位數

3、開啟pycript,網上蒐個python的天氣**

#!/usr/bin/env python

# -*- coding: utf-8 -*-

# by ustcwq

import urllib2

import threading

from time import ctime

from bs4 import beautifulsoup

defgetpm25

(cityname):

site = '' + cityname + '.html'

html = urllib2.urlopen(site)

soup = beautifulsoup(html)

city = soup.find(class_ = 'bi_loaction_city') # 城市名稱

aqi = soup.find("a",) # aqi指數

quality = soup.select(".bi_aqiarea_right span") # 空氣質素等級

result = soup.find("div",class_ ='bi_aqiarea_bottom') # 空氣質素描述

print city.text + u'aqi指數:' + aqi.text + u'\n空氣質素:' + quality[0].text + result.text

print

'*'*20 + ctime() + '*'*20

defone_thread

():# 單執行緒

print

'one_thread start: ' + ctime() + '\n'

getpm25('hefei')

getpm25('shanghai')

deftwo_thread

():# 多執行緒

print

'two_thread start: ' + ctime() + '\n'

threads =

t1 = threading.thread(target=getpm25,args=('hefei',))

t2 = threading.thread(target=getpm25,args=('shanghai',))

for t in threads:

# t.setdaemon(true)

t.start()

if __name__ == '__main__':

one_thread()

print

'\n' * 2

two_thread()

執行報錯了!!!!

importerror: no module named 『bs4』問題

切換到 d:\python27\scripts 執行以下命令:

5、再次執行python檔案吧

成功輸出了!!! ^_^

python函式小測

1.程式設計實現9 9乘法表 1x1 1 2x1 2 2x2 4 for i in range 1,10 for j in range 1,i 1 print dx d d j,i,i j end print 2.用函式實現求100 200裡面所有的素數 def isprime a 100,b 20...

python 基礎運用小demo

這裡我們利用乙個基礎運算,實現數字的倒輸出。實現的過程 1 我們先使用input函式鍵盤錄入乙個想要倒數輸出的整數 2 之後我們定義乙個while迴圈和乙個值為0的變數i 3 第一次迴圈,aa 10是為了 取出 數字的最後一位 4 aa aa 10是為了讓數字 去除 最後一位 5 第二次迴圈時我們在...

python 介面開發《小demo

django 模組的 安裝 pip install django 2.驗證 django 是否安裝成功 cmd 進入python 輸入 import django 不報錯代表安裝成功 3.新建乙個django 專案 4.等待 django 包 匯入完成 5.進入到 django 目錄 啟動 djan...