### Python编程:从入门到实践 5-10 (动手试一试)

Python编程:从入门到入土 的79页:5-10编程练习题答案

其实我才学了2个月

#列表
c_users=['him','himtdl','himy','Himill','himydl']
n_users=['him','Himtdl','hi','hime','himone']

#转换小写
c_users_n=[name.lower() for name in c_users]

n_users_n=[names.lower() for names in n_users]
#检查+打印
for nuser in n_users_n:
    if nuser in c_users_n:
        print("sorry,"+nuser+",but you have to change this name.")
    else:
        print("you can use this name!"+nuser)

这是完整答案,或许有更简便的写法,但是我是看到了这里才打出来的,如果你也是一个小白,应该看得懂。

你可能感兴趣的:(### Python编程:从入门到实践 5-10 (动手试一试))