Month: May 2022

List

List 入面的東西可以不同Type List 入面亦可以有另一個 List List 入面不同的 List 可以有不同的 dimension L=[1,”1″,2.5,True] L[0] L[1] L[2] L[3] L[4]   #以下有是指 L1 有3個 List (List 中 List) ,但count L1 的length 只會有3個 items L1=[[1,”1″,2.5,True,2,3],[4.1,”ABC”,4],[7,8,9,10]] # 取得 L1 的 length len(L1) # 取得 L1 內第0個元素的  length len(L1[0]) # 取得 L1 內第1個元素的  length len(L1[1]) # 取得 L1 內第2個元素的  length len(L1[2]) 以下會示範取得 Read More

Filtering by postion : first one (第一個), 第x個 (某一個), last one (最後一個), 單數/雙數

在開始之前,先學會COUNT 一個字串的長度 function: len() s=”1234567″ len(s) expected result: 7   接下來,要著意python 第一個值是 0 ; 最後一個值是 -1 s=”1234567″ # Python initial position is 0 s[0] 所以first one  : s[0] # Python last position is -1 s[-1] 所以last one  : s[-1]   再來就是抽某一個範圍的數值 s=”1234567″ s[x:n] —– 其中x, n為數字; 代表第x個位置開始抽,抽到第 N-1 個位置 ; 例子: # 由第x個位置開始抽,抽到第 N-1 個位置 Read More

1st Python : Print

# print() is a function in python print(“hello”)   值得留意的是,如果將 “hello” 設定為variable, 則不用print 的情況下,在Jupyter 都可以直接Run,例子: c=”Python is cool” c Expected result: Python is cool   Read More

wpChatIcon