为了账号安全,请及时绑定邮箱和手机立即绑定

怎么写才能在比较时候不区分大小写?Lion和liON不区分大小写对比,并打印出已被占用。

怎么写才能在比较时候不区分大小写?Lion和liON不区分大小写对比,并打印出已被占用。

Good丶study 2017-12-12 11:14:49
current_users = ['Tifa', 'Ada', 'Lightning', 'Lion', 'Natasha']new_users = ['Tifa', 'Ada', 'Lucifer', 'liON', 'Michael']#下面是我写的代码,该如何在用户名为liON时打印出'Username is uese'?for new_user in new_users:    print(new_user)    if new_user in current_users:        print('Username is uesd')    else:        print('Username is not used')
查看完整描述

1 回答

?
Good丶study

TA贡献1条经验 获得超0个赞

current_users = ['Tifa', 'Ada', 'Lightning', 'Lion', 'Natasha']

new_users = ['Tifa', 'Ada', 'Lucifer', 'liON', 'Michael']

for new_user in new_users:

    print(new_user)

    if new_user.lower() in [value.lower() for value in current_users]:

        print('You need another name!')

    else:

        print('You can use this name!')


查看完整回答
反对 回复 2017-12-12
  • 1 回答
  • 0 关注
  • 1256 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信