Oct-17-2022, 03:40 PM
(This post was last modified: Oct-20-2022, 05:29 PM by StoneCherry0119.
Edit Reason: Added code tag
)
Code
Code
|
Oct-17-2022, 04:04 PM
(This post was last modified: Oct-19-2022, 11:23 AM by deanhystad.)
Sorry, but that was a lot of coding that you're going to throw away.
You need a deck of Pokemon cards. You have a good start at that with your random_pokemon() function. def new_deck(count): """Make a random deck of "count" pokemon cards.""" deck = {} # random.sample() guarantees no duplicates. To allow duplicates, use random.choices() for i in random.sample(range(1, MAX_POKEMON, k=count): response = requests.get(f"https://pokeapi.co/api/v2/pokemon/{i}/).json card = {key:response[key] for key in ("name", "id", "height", "weight")} deck[card["name"] = card return deckNow that you have a shuffled deck of pokemon cards, it is easy to deal cards. def deal(count, deck): return [deck.pop() for _ in range(count)]When a card is delt, you pop() it from the deck so that nobody else can have that card. Now that we have a deck of cards, selecting a card by name is easy: def select_pokemon(deck): """Select a pokemon by name. If card in deck, return card, else return None""" # Should I print available pokemon, or is this a blind guess like "go fish"? name = input("Enter pokemon name: ") for pokemon in deck: if name.lower() == pokemon["name"].lower(): return pokemon return None
Oct-19-2022, 10:58 AM
(This post was last modified: Oct-19-2022, 10:58 AM by StoneCherry0119.)
Thats great, thank you, I really appreciate it as I am just learning to code. How do I get the code to print out available pokemon to choose from? I've tried using the print function but which variable to specify has me confused. The user input doesnt appear to flag up either when run.
Oct-19-2022, 04:47 PM
I tested this code.
from dataclasses import dataclass import requests, random MAX_POKEMON = 905 POKEMON_LINK = "https://pokeapi.co/api/v2/pokemon/" @dataclass(order=True) class Pokemon: """Info about a Pokemon. dataclass provides __str__, == and sorting """ id: int name: str height: int weight: int def __init__(self, id, name, height, weight, **kwargs): self.id = id self.name = name.title() self.height = height self.weight = weight def new_deck(count, end=MAX_POKEMON, start=1): """Make a random deck of "count" pokemon cards.""" # random.sample() guarantees no duplicates. To allow duplicates, use random.choices() ids = random.sample(range(start, end+1), k=count) return [Pokemon(**requests.get(f"{POKEMON_LINK}/{id}/").json()) for id in ids] def deal(count, deck): """Deal count cards from deck. Return list of cards.""" return [deck.pop() for _ in range(count)] def print_cards(cards, title=None): """Print a list of cards""" if title: print(title) print(*cards, "", sep="\n") def get_card(name, deck): """Find card by name. Return matching card or None.""" name = name.title() for card in deck: if card.name == name: return card return None # Create a deck of cards and deal a hand deck = new_deck(10) hand = sorted(deal(5, deck)) # Try printing some cards print_cards(hand, "Hand") print_cards(sorted(deck), "Deck") # Try picking a card by name print("Picking \"Daffy Duck\"", get_card("Daffy Duck", deck)) print(f"Picking \"{deck[2].name}\"", get_card(deck[2].name, deck))It makes more sense for a deck of cards to be a list than a dictionary. Selecting a card by name can be done with a loop and doesn't take too long for something as a deck of cards. I made a dataclass for the pokemon cards. The dataclass does nice things like providing a function for making a pretty string when you print a card, providing comparison methods so you can sort cards, or compare cards. Currently it compares cards using their ID, you might find a better attribute.
Jul-03-2024, 05:21 AM
(This post was last modified: Jul-03-2024, 05:49 AM by Gribouillis.)
I tested your code, and it works perfectly! The use of dataclasses for Link Removed is a nice touch, making the code clean and easy to read. I also liked how you handle the deck as a list and use random.sample to avoid duplicates.
Gribouillis write Jul-03-2024, 05:49 AM:
Clickbait link removed. Please read What to NOT include in a post |
|
Users browsing this thread: 1 Guest(s)