📜  如何在 python 中使用小写检查制作列表副本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:36.440000             🧑  作者: Mango

代码示例1
current_users_lower = []
for user in current_users:
    current_users_lower.append(user.lower())