這題我也是看了之後一時間不知道如何解決,
後來看到這位大哥的方法後才有點明白,特此寫下來給自己加油鼓勵
current_users =
['admin'
,'user_01'
,'cangjie'
,'zero_01'
,'zzz'
]#建立乙個列表
new_users =
['admin'
,'user_01'
,'zero_01'
,'4444'
,'fangyangpi'
]new_current_users =
for current_user in current_users:))
#這裡的已經就是把原來列表裡的東西全部變成小寫放到新的列表裡面new_current_users
for user in new_users:
if user.lower(
)in new_current_users:
print
(user +
'這個使用者名稱已被使用'
)else
:print
('\nhello,'
+ user +
'這個使用者名稱可以使用'
)
下面是執行後的結果
admin這個使用者名稱已被使用
user_01這個使用者名稱已被使用
zero_01這個使用者名稱已被使用
hello,
4444這個使用者名稱可以使用
hello,fangyangpi這個使用者名稱可以使用
新人第一次寫,如果有不對的地方,大家請指出,共勉
順便吧5-11也寫了
這個也很好理解,先遍歷列表,1.2.3 單獨拿出來。其他的都是+th就可以了
nums =[1
,2,3
,4,5
,6,7
,8,9
]for num in nums:
if num ==1:
print
('1st'
)elif num==2:
print
('2nd'
)elif num ==3:
print
('3rd'
)else
:print
(str
(num)
+'th'
)#如果是nums列表是'1','2'這樣的 最後就不用加str(num)了
Python 程式設計 從入門到實踐
1.官網安裝 3.環境配置 務必選中核取方塊add python to path 4.檢視 啟動python版本的命令 python 執行 print hello python world 5.終端執行x.py檔案 python x.py 7.檢視當前目錄中的所有檔案的命令 dir windows系...
Python程式設計從入門到實踐 基礎入門
python程式設計從入門到實踐 基礎入門 1 python中的變數 2 python首字母大寫使用title 方法,全部大寫upper 方法,全部小寫lower 方法 3 python中字串拼接使用 號 4 python中刪除字串的空格 刪除末尾空格的rstrip 刪除開頭空格的lstrip 刪除...
Python程式設計 從入門到實踐 1
內容總結自 python程式設計 從入門到實踐 安裝python3 安裝文字編輯器sublime text並配置python3環境 安裝sublime text tools new build system 將 untitled.sublime build 文件中的所有內容刪除,輸入以下內容 注意,...