一些有關函式和迴圈的聯絡:
判斷a是否以b開頭
eg:方法一
a = "abcdef"
b = "abcd"
i = 0
while i < len(b):
if a[i]!=b[i]:
print("flase")
break
i = i+1
else:
print("true")
結果為:true
方法二(函式)
eg:
"abcdef"
b = "abcd"
def startwith(x,y):
i = 0
while i < len(y):
if x[i]!=y[i]:
return false
i = i+1
return true
print(startwith(a,b() "abcdef"
b = "abcd"
def startwith(x,y):
i = 0
while i < len(y):
if x[i]!=y[i]:
return false
i = i+1
return true
print(startwith(a,b))
結果為:true
判斷字串a是否以字串b結尾
eg:
a = "abcdef"
b = "def"
# print(a.endswith(b)) #a以b結尾
# 從最後乙個比較
i = -1
while i >= -len(b):
if a[i]!=b[i]:
print("false")
break
i = i-1
else:
print("true")
# 從短的一項的第乙個比較
i = 0
while i < len(b):
if a[len(a)-len(b)+i]!=b[i]:
print("false")
break
i = i+1
else:
print("true")
結果為:true
將兩個列表對應的元素相加,得到乙個新的列表
eg:
a = [i for i in range(1,13)]
b = [i*10 for i in range(1,13)]
print(a)
print(b)
c =
i = 0
while i < len(a):
# a[i]= a[i]+b[i] #第二種方式
i = i+1
print(c)
結果為:
輸入乙個數,判斷這個數是否為質數
eg:
x = int(input("請輸入乙個數:"))
if x <= 1:
print("這不是乙個質數!")
else:
i = 2
while i < x:
if x%i==0:
print("這不是乙個質數!")
break
i = i+1
else:
print("這是乙個質數!")
將兩個長度不相等的兩個列表對應的元素相加,獲得乙個新的列表
eg:
a = [1,2,3,4,5,6,7,8,9,10,11,12]
b = [1,2,3,4,5,6,7,8,9,10]
i = 0
c =
while i < len(a) or i < len(b):
x=y=0
if i < len(a):
x=a[i]
if i < len(b):
y=b[i]
i=i+1
print(c)
結果為:
判斷字串b是否在字串a中存在
eg:
a = "abcdde"
b = "cd"
i = 0
while i結果為:true
輸出乙個數字三角形
eg:i = 1
while i < 7:
j = 1
while j <= i:
print(j,end=" ")
j = j+1
print()
i = i+1
結果為:
輸出乙個由 * 組成的倒三角
eg:
def paint():
i = 1
while i < 7:
j = 1
while j<=i-1:
print(" ",end="")
j = j+1
k = 0
while k<7-i:
print("*",end="")
k = k+1
print()
i = i+1
paint()
python基礎知識(二十四)
class node def init self,data,next none self.data data self.next next class link def init self self.head none def add self,data one node data if self....
Python 基礎知識
來自 一 識別符號 1.python 中的識別符號是區分大小寫的。2.標示符以字母或下劃線開頭,可包括字母,下劃線和數字。3.以下劃線開頭的識別符號是有特殊意義的。以單下劃線開頭 foo 的代表不能直接訪問的類屬性,需通過類提供的介面進行訪問,不能用 from import 而匯入 以雙下劃線開頭的...
python基礎知識
一.隨機數的生成 都需要 import random 1.用於生成乙個指定範圍內的隨機浮點數。print random.uniform 10,20 print random.uniform 20,10 2.生成乙個指定範圍內的整數。下限必須小於上限制 print random.randint 12,...