Python 實現均值和樣本標準方差的計算

import mathapp lst=[] str=input("輸入:") lst1 = str.split(" ") i = 0  t=len(lst1)  while i <= t+1:     if len(lst1)==0:         break     else:         lst.append(float(lst1.pop()))#將lst1的數據轉換爲整型並賦值給lst
相關文章
相關標籤/搜索