E11. Display those rows where the sum of Pokemon's base stats isat least 550. There should be 87 Pokemon.
E12. Display those rows where the sum of the Pokemon's basestats is at least 550 and where the Pokemon hasan attack stat less than 100. There should be 25 suchPokemon.
E13. Display each of the Dragon type Pokemon. There should be 45of them.
E14. Display the average (mean) Attack stat for theall of the Dragon type Pokemon. The mean should be approximately94.67.
E15. Display the all of the Pokemon starting at the row #493,and ending at row #649, but only display the Name, Type1, Type 2, Exp Group, and Capture Rate columns.The first row (plus column headers) should look similar to thefollowing:
E16. Display the names of all the Pokemon whose names are atmost 5 letters long. There should be 55 of them. The first and lastshould be Ekans and Hoopa, respectively.
E17. Display the names of all of the Pokemon that have theability Shed Skin. There should be 16 pokemon total.
E19. Display those rows where a Pokemon has the WaterAbsorb ability but is not a Water-type pokemon. Thereshould only be 3 such Pokemon.
E18. Display the names and ablities for all of the Pokemon thathave at least 3 possible abilities. To do this,you'll have to use the pandas function str.count to countthe number of commas in the Abilities attribute.. You canread about how this function works here. There should be 441pokemon total.