1.print("hello".capitalize());
將第乙個字元轉化為大寫,其他字元轉化為小寫
2.print("hello world ".strip());
:注意lstrip,rstrip,strip的用法
3.print("www.baidu.com".split("."))
:會用split裡面的分割符進行分割
4print("a".islower());
:islower,isupper,isspace,isdigit,isalpha的使用
5.print("-".join("210.34.148.51".split(".")));
: #.join函式僅在字串之間進行插入,在字串的開頭乙個末尾都不進行插入
多行的注釋方式為ctrl+1
#計數器的運用
from collections import counter
phrase =
"世界 你 好,你好! 你好"
cntr = counter(phrase.split())
print
(cntr.most_common)
#這裡是從web中爬取相應的資料
#這裡一定要有相應的異常處理機制 try except
import urllib.request
try:
with urllib.request.urlopen(
"")as doc:
html = doc.read();
print
("yes"
)except
:print
("couldn't not open file"
);
待更!! python科學計算與資料分析
主要講解numpy庫的使用,重點是其中的一些函式我們不知道或者不怎麼了解他的具體用法,朋友們可以將本文當作numpy庫的較具體的的函式說明文件進行 1.array函式 將輸入資料 列表 元組 陣列或其他序列型別 轉換為ndarray。要麼推斷出 dtype,要麼顯式指定 dtype。預設直接複製輸入...
Python基礎 資料科學入門(十)numpy庫
1.1 低效的python for迴圈 例 求100萬個數的倒數 def compute reciprocals values res for value in values 1 value return res values list range 1 10000 timeit compute re...
Python資料分析入門
原文 最近,analysis with programming加入了planet python。作為該 的首批特約部落格,我這裡來分享一下如何通過python來開始資料分析。具體內容如下 資料匯入 資料變換 資料統計描述 假設檢驗 視覺化 建立自定義函式。這是很關鍵的一步,為了後續的分析我們首先需要...