![240](https://upload.jianshu.io/users/upload_avatars/1659111/1a6d6556-8a46-495c-a767-b270142654d2.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240)
IP屬地:山西
散點圖,每個bin 中畫一段線from scipy import statsbins=[3.5,4,4.5,5,5.5,6,6.5]x,y=L_...
轉(zhuǎn)義符 \ 如果要想在字符串中包含這個字符置吓,需要這樣寫 ‘\’ print(‘he said, it\’s fine') 轉(zhuǎn)義符號\的另外兩個形...
新建數(shù)組 a=[]for i in xxx:a.append(i[0:13]) 多維數(shù)組 b = np.array([(1.5,2,3), (4...
os.getcwd() 輸出當前目錄os.path.exists(r”c:\python\hello.py”) –> True 判斷文件是否...
讀取txt文件 方法一 逐行讀取f = open(file, 'r') ----> 常用的mode有如下幾種: ‘r’只讀无虚,‘w’寫入,...
折線圖 fig = plt.figure(figsize=(20,10), dpi=80) 或者fig, ax = plt.subplots(1...