Twilight6 发表于 2020-4-24 23:21:42

WangJS 发表于 2020-4-24 23:14
今天没了,24个根本不够用啊

你个臭猪{:10_277:}{:10_264:}

lixiangyv 发表于 2020-4-25 07:31:30

current_users = ['admin','Jason','Peter','WangJS','Good']
new_users = ['Jason','隔壁老王','wangjs','蔓越莓','Peter']

for i in range(len(current_users)):
    current_users = current_users.lower()
    new_users = new_users.lower()

for user in new_users:
    if user in current_users:
      print(user + "已被使用")
    else:
      print(user + '未被使用')

WangJS 发表于 2020-4-25 14:15:52

liuzhengyuan 发表于 2020-4-24 15:36


你这个报错了啊

liuzhengyuan 发表于 2020-4-25 14:27:54

WangJS 发表于 2020-4-25 14:15
你这个报错了啊

好吧,错的有点离谱
current_users = ['admin','Jason','Peter','WangJS','Good']
new_users = ['Jason','隔壁老王','wangjs','蔓越莓','Peter']

current_users = list(map(lambda x : x.casefold(), current_users))
for i in new_users:
      if i.casefold() in current_users:
                print(i + ' 已被使用')
      else:
                print(i + ' 未被使用')

WangJS 发表于 2020-4-25 14:33:51

liuzhengyuan 发表于 2020-4-25 14:27
好吧,错的有点离谱

又是评分数量不够的一天{:10_262:}

liuzhengyuan 发表于 2020-4-25 14:34:54

WangJS 发表于 2020-4-25 14:33
又是评分数量不够的一天

我可以帮忙评{:10_256:}

WangJS 发表于 2020-4-25 14:35:58

liuzhengyuan 发表于 2020-4-25 14:34
我可以帮忙评

第二页有7个没评的,交给你了{:10_256:}{:10_254:}
(每人一个荣誉,一个贡献就好,也不扣你自己的)

March2615 发表于 2020-4-25 15:58:52

WangJS 发表于 2020-4-24 23:14
今天没了,24个根本不够用啊

鱼币就不用给我啦重在参与让那些不是VIP的多点鱼币吧

Twilight6 发表于 2020-4-25 16:58:03

WangJS 发表于 2020-4-25 14:15
你这个报错了啊

这你就不够意思了{:10_277:}...

雪影里 发表于 2020-4-25 17:25:22

current_users = ['admin','Jason','Peter','WangJS','Good']
new_users = ['Jason','隔壁老王','wangjs','蔓越莓','Peter']
for each in new_users:
    if each in current_users:
      print('%s已经被使用'%(each))
    else:
      print('%s没被使用'%(each))

liuzhengyuan 发表于 2020-4-25 18:40:23

WangJS 发表于 2020-4-25 14:35
第二页有7个没评的,交给你了
(每人一个荣誉,一个贡献就好,也不扣你自己的)

嗯嗯,好了

WangJS 发表于 2020-4-25 20:12:44

liuzhengyuan 发表于 2020-4-25 18:40
嗯嗯,好了

跪谢{:10_340:}

雪影里 发表于 2020-4-26 10:53:20

current_users = ['admin','Jason','Peter','WangJS','Good','Jhon']
for i in range(len(current_users)):
    current_users = current_users.casefold()
new_users = ['Jason','隔壁老王','wangjs','蔓越莓','Peter','Jhon','JHON']
for each in new_users:
    if each.casefold() in current_users:
      print('%s已经被使用'%(each))
    else:
      print('%s没被使用'%(each))

五叶丁香 发表于 2020-4-26 19:15:36

看一下

guol293 发表于 2020-4-26 19:38:55

current_users = ['admin','Jason','Peter','WangJS','Good']
new_users = ['Jason','隔壁老王','wangjs','蔓越莓','Peter']

checkuser=""
for new in new_users:
    checkuser=new.lower()
   
    count=0
    for current in current_users:
      userlist=current.lower()
      if checkuser==userlist:
            count+=1

    if count==0:
      print(checkuser,"未被使用")
    else:
      print(checkuser,"已被使用")

用爱发电 发表于 2020-5-6 21:32:27

current_users = ['admin','Jason','Peter','WangJS','Good']
new_users = ['Jason','隔壁老王','wangjs','蔓越莓','Peter']
x = len(current_users)
for i in range(x):
    if new_users in current_users:
      print(new_users,'已被使用')
    else:
      print(new_users,'没被使用')

用爱发电 发表于 2020-5-6 21:49:09

用爱发电 发表于 2020-5-6 21:32
current_users = ['admin','Jason','Peter','WangJS','Good']
new_users = ['Jason','隔壁老王','wangjs', ...

字母都变小写,不想改了,就这样吧

霜序一 发表于 2020-5-8 16:38:20

print("___________2020年5月08日_____________")

current_user = ["Lx123","sxy123","可惜没如果","Jay","SHELL"]
new_users = ["lx123","SSXX123","可惜没如果","JAY","那些年"]

for i in range(5):
    if new_users.lower() == current_user.lower():
      print(new_users+"    【已被占用】")
    else:
      print(new_users+"    【未被占用】")

有谁懂 发表于 2020-5-11 11:16:03

current_users = ['admin','Jason','Peter','WangJS','Good']
current_users =
new_users = ['Jason','隔壁老王','wangjs','蔓越莓','Peter']
i = len(new_users)
a = 0
while i > a:
    if new_users.lower() in current_users:
      print(new_users + '已被使用')
    else:
      print(new_users + '未被使用')
    a += 1

有谁懂 发表于 2020-5-11 11:17:54

霜序一 发表于 2020-5-8 16:38
print("___________2020年5月08日_____________")

current_user = ["Lx123","sxy123","可惜没如果","Jay ...

好像不能交叉匹配,建议参考下大家的代码!
页: 1 2 [3] 4 5
查看完整版本: 小白Python练习册(4)【鱼币福利】