team = ['bayern', 'barca', 'roma'] ##定義乙個列表
print(team[0])
print('球隊顯示'.center(50,'*'))
for teams in team :
# print不換行輸出
方法2 insert():插入 插入乙個元素到指定位置
service.insert(2,『mysql』)
print(service)
方法3 extend():拉神 追加多個元素到列表中
方法1 pop:取出 預設取出列表內最後乙個元素,特點是可以儲存元素的值在記憶體中。
service.pop()
print(service)
a = service.pop(0)
print(service)
print(a)
方法2 remove:刪除 刪除列表中指定內容的元素且不能儲存,若元素內容相同則刪除索引值最小元素。
方法3 del:從記憶體中刪除
#1.通過索引重新賦值
service[0] = 『mysql』
print(service)
#2.通過切片重新賦值
#檢視出現次數
print(service.count(『ftp』))
#檢視指定元素索引值
print(service.index(『ftp』))
print(service.index(『ftp』,1,4))
import random
#### 排序檢視 按照ascii碼進行排序的
對字串排序不區分大小寫
in [15]: phones = ['alice','bob','harry','borry']
in [16]: phones.sort() ###按照ascii碼排序
in [17]: phones
out[17]: ['borry', 'alice', 'bob', 'harry']
in [18]: phones.sort(key=str.lower)
in [19]: phones
out[19]: ['alice', 'bob', 'borry', 'harry']
in [20]: phones.sort(key=str.upper)
in [21]: phones
out[21]: ['alice', 'bob', 'borry', 'harry']
in [22]: phones.sort(key=str.upper)
in [23]: phones
out[23]: ['alice', 'bob', 'borry', 'harry']
打亂順序
li = list(range(10))
print(li)
#### 講原有的列表順序打亂
random.shuffle(li)
print(li)
系統分析與設計 lesson6
1 用例建模 b.選擇去哪兒網酒店預訂。1查詢酒店108 使用者可以通過相關資訊查詢酒店 2預訂酒店105 使用者可以選擇酒店並進 間預訂 3獲取訂單資訊33 使用者可以檢視已下的訂單資訊 4修改確認訂單53 使用者可以修改訂單資訊和確認訂單 5支付訂單105 使用者可以支付已確認的訂單 2 業務建...
系統分析與設計 lesson6 作業
a.閱讀 asg rh 文件,繪製用例圖。按 task1 要求,請使用工具 umlet,截圖格式務必是 png 並控制尺寸 對比 asg rh 用例圖,請用色彩標註出創新用例或子用例 盡可能識別外部系統,並用色彩標註新的外部系統和服務 c.對比兩個時代 不同地區產品的用例圖,總結在專案早期,發現創新...
Python學習筆記Lesson1 2
1.python中的語句不使用分號結尾 2.python中 接受輸入可以用 變數名 input 其中input中可以帶引數,例如name input 請輸入使用者名稱 3.python輸出print 可以用逗號連線輸出字元 也可以用 例如print 歡迎回來,name print 歡迎回來,name...