# wget --no-check-certificate https://hd.fizyka.umk.pl/~gkowzan/teaching/python3/class6_files/game1.py from typing import List, Tuple, Dict, Iterable, Sequence import random SUITS = "♠ ♡ ♢ ♣".split() RANKS = "2 3 4 5 6 7 8 9 10 J Q K A".split() l1: List[str] = ["sdfsda", "sdfsda", "sdfg"] t1: Tuple[str, str, int] = ('asfd', 'asdfsda', 234) d1: Dict[str, int] = {'pomidor': 1, 'ogórek': 4} Card = Tuple[str, str] Deck = List[Card] def square(elems: Sequence[float]) -> List[float]: return [x**2 for x in elems] def square2(elems: Iterable[float]) -> List[float]: return [x**2 for x in elems] def create_deck(shuffle: bool=False) -> Deck: """Create a new deck of 52 cards""" deck = [(s, r) for r in RANKS for s in SUITS] if shuffle: random.shuffle(deck) return deck def deal_hands(deck: Deck) -> Tuple[Deck, Deck, Deck, Deck]: """Deal the cards in the deck into four hands""" return (deck[0::4], deck[1::4], deck[2::4], deck[3::4]) def play(): """Play a 4-player card game""" deck = create_deck(shuffle=True) names = "P1 P2 P3 P4".split() hands = {n: h for n, h in zip(names, deal_hands(deck))} for name, cards in hands.items(): card_str = " ".join(f"{s}{r}" for (s, r) in cards) print(f"{name}: {card_str}") return if __name__ == "__main__": play()