python 仅在循环 x 次中显示元组项

python only show tuple items in loop x amount of times

我需要帮助找到一个 python 函数,它只会显示元组中的值,(x) 次。

from random import *


rankName = ("Ace", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten", "Jack", "Queen", "King")

suit = ("hearts", "diamonds", "spades" , "clubs")

users = ("I", "computer", "deck")

NUMCARDS = 52
DECK = 0
PLAYER = 1
COMP = 2

count = 0
while (count < 52):
   for u in rankName:
       for i in suit:
           count = count + 1
           w = choice(users)
           ''' 'computer' and 'I' should only show 5 times, while deck shows 42 cards '''
           print count, '\t| ', u,' of', i, '\t|', w

谢谢。

添加两行,试试看:

from random import *


rankName = ("Ace", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten", "Jack", "Queen", "King")

suit = ("hearts", "diamonds", "spades" , "clubs")

users = ("I", "computer", "deck")

# make it weighted and shuffed
users_with_weights = ["I"]*5 + ['computer']*5 + ['deck']*42
shuffle(users_with_weights)

NUMCARDS = 52
DECK = 0
PLAYER = 1
COMP = 2

count = 0
while (count < 52):
   for u in rankName:
       for i in suit:
           count = count + 1
           w = users_with_weights.pop()
           ''' 'computer' and 'I' should only show 5 times, while deck shows 42 cards '''
           print count, '\t| ', u,' of', i, '\t|', w

让我知道它是否满足您的所有需求。

您也可以稍微改变您的逻辑并实际发牌,例如:

from itertools import product
from random import *
rankName = ("Ace", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", 
            "Nine", "Ten", "Jack", "Queen", "King")
suit = ("hearts", "diamonds", "spades" , "clubs")
users = ("deck", "I", "computer")

NUMCARDS = 52
DECK = 0
PLAYER = 1
COMP = 2

deck = list(product(suit, rankName))
deal = sample(deck, 10)
player = deal[0::2]
computer = deal[1::2]

for count, (suit, rank) in enumerate(deck):
    user = PLAYER if (suit, rank) in player else COMP if (suit, rank) in computer else DECK
    print count+1, '\t| ', rank,' of', suit, '\t|', users[user]