python應用舉例 python基礎舉例應用

2021-10-11 05:13:22 字數 507 閱讀 8884

將下述兩個變數的值交換

s1='alex'

s2='sb'

s1,s2=s2,s1

print(s1,s2)

判斷下述結果

msg1='alex say my name is alex,my age is 73,my *** is female'

msg2='alex say my name is alex,my age is 73,my *** is female'

print(msg1 is msg2)

print(msg1 == msg2)

有存放使用者資訊的列表如下,分別存放使用者的名字、年齡、公司資訊userinfo=,,,

取第二個學生的第二個愛好

要求取出三名學生的詳細資訊分別賦值給三個變數(用一行**實現)

students=[,,

,print(students[1]['hobbies'][1])

a,b,c=students

print(a,b,c)

Parcelable 應用舉例

首先,自定義物件必須實現parcelable,並且建立static final parcelable.creatorcreator物件 實現createfromparcel和newarray方法 自定義物件為 public static class contact implements parcel...

sed應用舉例

1,sed 3d test.txt 把test.txt中的第三行刪除 2,sed 3a hello world test.txt 在test.txt的第三行後面新增 hello world 這一行 3,sed 3i hello world test.txt 在test.txt的第三行前面面新增 he...

STL list應用舉例

includeusing namespace std include includeint main listilist2 iv,iv 5 ite find ilist.begin ilist.end 99 查詢99的位置 ilist.splice ite,ilist2 在99位置插入ilist2 ...