20150929 [KUASITC] Python社課筆記(1)
[ 筆記內容 ] 簡易計算機
  • (一)基本概念
  • 1.  程式變數的型態
  • 2.  程式流程的控制
  • (二)課堂上的題目
  • STEP_1 : 計算平均值
  • STEP_2 : 利用平均值來計算標準差 
  • STEP_3 : 把使用者輸入的資料變成 list
  • STEP_4 : 計算結果後輸出
 
 
[ 範例程式 ] GitHub
 
 

(一)基本概念

1.  程式變數的型態
  • 數字型態 : intfloat
  • 字串型態 : String
  • 陣列型態 : List
  • 內建字典型態 : Dict
 
  • [ 範例 ] 型態的差異
# lesson_1_(1).py
a = 1    # type of a is "int"
print(type(a))
 
b = 2.0    # type of b is "float"
print(type(b))
 
c = '3'    # type of c is "str"(String)
print(type(c))
 
# list
d = range(10)    # type of d is "range"(List)
print(d)
print(type(d))
    
 
  • < 輸出結果 >
 
  • [ 補充 ] 計算 list (陣列) 長度的方法
  • 使用 "len()"
# 使用範例
'''
array = [ 'one', 'two', 'three' ]
print( len( array ) )    # array陣列的長度為"3"