0 of 1 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 1 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
POKEMON API
Retrieve a list of Pokemon’s name, abilities, types, and weight from the PokeAPI
https://pokeapi.co/
Make 20 Pokemon
Whenever you need to create a POKEMON, you need to construct your Pokemon through data from the API: https://pokeapi.co/
Below is an example of how your Pokemon should be categorized: by Type.
Create a dictionary
{
‘Fire’: {
‘charizard’: {
‘abilities’: [],
‘weight’: ,
},
‘pokemon’: {
‘abilities’: [],
‘weight’: ,
}
},
‘Flying’:,
‘Water’:
}
Remember, it may be easier to write functions to do your dirty work, and then call them to execute each topic, rather than trying to write a monstrous spaghetti-script that does it all at once; it also might be very good to plan how you’ll go about this and what functions you might use before you write 500 lines of code that confuse and befuddle all who lay eyes upon it. Including yourself. An immense portion of good coding is just planning.
When you’re done, create a GitHub repository for your assignment and save the repository link as the assignment.
This response will be reviewed and graded after submission.