失败且常态 发表于 2022-11-30 17:33:33

“斗地主” 的发牌程序问题

本帖最后由 失败且常态 于 2022-11-30 17:36 编辑

设计一个 “斗地主” 的发牌程序
import random
   
cards = ["♦1", "♦2", "♦3", "♦4", "♦5", "♦6", "♦7", "♦8", "♦9", "♦10", "♦J", "♦Q", "♦K",
         "♥1", "♥2", "♥3", "♥4", "♥5", "♥6", "♥7", "♥8", "♥9", "♥10", "♥J", "♥Q", "♥K",
         "♣1", "♣2", "♣3", "♣4", "♣5", "♣6", "♣7", "♣8", "♣9", "♣10", "♣J", "♣Q", "♣K",
         "♠1", "♠2", "♠3", "♠4", "♠5", "♠6", "♠7", "♠8", "♠9", "♠10", "♠J", "♠Q", "♠K",
         "☀", "🌙"]
   
def fy_shuffle(x, n=1):
    for i in range(n):
      target = list(x)
      result = []
      while target:
            r = random.randint(0, len(target)-1) # 步骤2
            result.append(target.pop(r)) # 步骤3
   
    return result
   
def dealCards():
    a = input("请输入第一位游戏玩家名称:")
    b = input("请输入第二位游戏玩家名称:")
    c = input("请输入第三位游戏玩家名称:")
   
    r = {}
    r, r, r = [], [], []
   
    new_cards = fy_shuffle(cards, 3)
   
    for i in range(17):
      r.append(new_cards.pop())
      r.append(new_cards.pop())
      r.append(new_cards.pop())
   
    d = random.sample((a, b, c), 1)
    print(f"\n地主是:{d}\n")
    r.extend((new_cards.pop(), new_cards.pop(), new_cards.pop()))
   
    print(f"[{a}]拿到的牌是:{' '.join(r)}\n")
    print(f"[{b}]拿到的牌是:{' '.join(r)}\n")
    print(f"[{c}]拿到的牌是:{' '.join(r)}")
   
dealCards()

请问在这段代码中d = random.sample((a, b, c), 1)这句代码后面的是什么意思
还有为什么r.extend((new_cards.pop(), new_cards.pop(), new_cards.pop()))这句代码可以把地主的三张牌加进去,它给的不是一个新的键吗

Mefine 发表于 2022-11-30 18:28:58

d = random.sample((a, b, c), 1)是因为sample是从指定序列中随机获取指定长度的片段,结果以列表返回,要取到值所以需要用从列表中切片取值

失败且常态 发表于 2022-12-1 15:12:51

Mefine 发表于 2022-11-30 18:28
d = random.sample((a, b, c), 1)是因为sample是从指定序列中随机获取指定长度的片段,结果以列表返回 ...

那请问他是怎么将,地主三张牌加到地主的牌里面的
为什么r.extend((new_cards.pop(), new_cards.pop(), new_cards.pop()))这句代码可以把地主的三张牌加进去,它给的不是一个新的键吗

Mefine 发表于 2022-12-1 16:33:18

失败且常态 发表于 2022-12-1 15:12
那请问他是怎么将,地主三张牌加到地主的牌里面的
为什么r.extend((new_cards.pop(), new_cards.pop( ...

Lists 的两个方法 extend 和 append 看起来类似,但实际上完全不同。extend 接受一个参数,这个参数总是一个 list,并且把这个 list 中的每个元素添加到原 list 中。

失败且常态 发表于 2022-12-1 20:31:22

Mefine 发表于 2022-12-1 16:33
Lists 的两个方法 extend 和 append 看起来类似,但实际上完全不同。extend 接受一个参数,这个参数总是 ...

我懂了谢谢帮助!
页: [1]
查看完整版本: “斗地主” 的发牌程序问题