學習python 第006天 列表(一)

2022-06-24 21:39:12 字數 2211 閱讀 3902

列表(一)

#@author:濁浪3#

@time: 2021/3/9 22:26

45 a = 1 #

變數儲存的是乙個物件的引用

6 lis = ['

hello

', '

nm', 996]

7print

(id(lis))

8print

(type(lis))

9print

(lis)

1011

12'''

建立列表的兩種方式

'''13

#第一種 直接

14 lst1 = ['

hello

', '

wwww

', 996]

15print(lst1[1], lst1[-2])

1617

#第二種

#@author:濁浪3#

@time: 2021/3/9 22:43

45 lst = ['

hello

', '

nm', 996, '

hello']

6print(lst.index('

hello

')) #

如果類表中有相同元素則返回第乙個元素的索引78

#print(lst.index('pyhton')) #valueerror: 'pyhton' is not in list9#

print(lst.index('hello', 1, 3)) #valueerror: 'hello' is not in list 查詢範圍是[1,3)

#@author:濁浪3#

@time: 2021/3/9 22:52

4 lst = [10, 20, 30, 40, 50, 60, 70]

5print('

原列表:

', id(lst))67

#start = 1, stop = 6, step = 1

8 lst2 = lst[1:6:1]

9print('

切片後結果:

', id(lst2))

1011

print

(lst)

12print

(lst2)

1314

print(lst[1:6]) #

預設步長為1 有無冒號:無所謂

15print(lst[1:6:])

1617

print(lst[:6:2]) #

預設的start為0

1819

print((lst[::3])) #

預設stop為最後

20print('

----------------step為負數的情況----------------------')

學習python 第007天 列表(二)

列表 二 author 濁浪3 time 2021 3 10 16 134 向列表末尾增加元素 5 lst 10,20,30 6print 新增元素前 id lst 8print 新增元素前 id lst 910 在列表末尾至少新增乙個元素 11 lst2 hello wo 12 13 lst.ex...

python第25天 學習python第25天

今天是在尚學堂學習python第25天今天學習了使用者管理,許可權管理 使用者管理 1.使用者的登入與退出 語法 mysql h hostname p port u username p dbname e h hostname 指定要連線mysql的主機名或者ip hostname就是具體的主機名或...

python學習第7天

崔鑫陽 2019.225 課堂檢測題 輸入兩個數 求出他們之間所有的素數 把這些素數放在 乙個列表裡 求這個列表裡素數的和 以及 最大值 和最小值 寫到乙個 裡 num 1 int input 輸入第乙個數 num 2 int input 輸入第二個數 if num 1 num 2 turn num...