|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
那行代码我在后面标注出来了
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[a], r[b], r[c] = [], [], []
new_cards = fy_shuffle(cards, 3)
for i in range(17):
r[a].append(new_cards.pop())
r[b].append(new_cards.pop())
r[c].append(new_cards.pop())
d = random.sample((a, b, c), 1)[0] # 不理解这里为啥要加后面的[0],这个下标索引
print(f"\n地主是:{d}\n")
r[d].extend((new_cards.pop(), new_cards.pop(), new_cards.pop()))
print(f"[{a}]拿到的牌是:{' '.join(r[a])}\n")
print(f"[{b}]拿到的牌是:{' '.join(r[b])}\n")
print(f"[{c}]拿到的牌是:{' '.join(r[c])}")
dealCards()
在这个程序中,`random.sample((a, b, c), 1)` 这行代码的作用是从元组 `(a, b, c)` 中随机选择一个元素作为结果。而由于 `random.sample()` 函数返回的是一个列表,即使只选择一个元素,仍然会以列表的形式返回。
为了得到选中的元素而不是列表,我们需要通过 `[0]` 来索引取出列表中的第一个元素。因此,`d = random.sample((a, b, c), 1)[0]` 这行代码的作用是随机选择 `a`、`b`、`c` 中的一个元素,并将其赋值给变量 `d`。
换言之,这行代码的作用是随机选择地主玩家并将其赋值给变量 `d`。
|
|