grandfathermagic

pokemons

Apr 25th, 2020
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.32 KB | None | 0 0
  1. pokemons = """
  2. #,Name,Type 1,Type 2,Total,HP,Attack,Defense,Sp. Atk,Sp. Def,Speed,Generation,Legendary
  3. 1,Bulbasaur,Grass,Poison,318,45,49,49,65,65,45,1,False
  4. 2,Ivysaur,Grass,Poison,405,60,62,63,80,80,60,1,False
  5. 3,Venusaur,Grass,Poison,525,80,82,83,100,100,80,1,False
  6. 4,Charmander,Fire,,309,39,52,43,60,50,65,1,False
  7. 5,Charmeleon,Fire,,405,58,64,58,80,65,80,1,False
  8. 6,Charizard,Fire,Flying,534,78,84,78,109,85,100,1,False
  9. 7,Squirtle,Water,,314,44,48,65,50,64,43,1,False
  10. 8,Wartortle,Water,,405,59,63,80,65,80,58,1,False
  11. 9,Blastoise,Water,,530,79,83,100,85,105,78,1,False
  12. 10,Caterpie,Bug,,195,45,30,35,20,20,45,1,False
  13. 11,Metapod,Bug,,205,50,20,55,25,25,30,1,False
  14. 12,Butterfree,Bug,Flying,395,60,45,50,90,80,70,1,False
  15. 13,Weedle,Bug,Poison,195,40,35,30,20,20,50,1,False
  16. 14,Kakuna,Bug,Poison,205,45,25,50,25,25,35,1,False
  17. 15,Beedrill,Bug,Poison,395,65,90,40,45,80,75,1,False
  18. 16,Pidgey,Normal,Flying,251,40,45,40,35,35,56,1,False
  19. 17,Pidgeotto,Normal,Flying,349,63,60,55,50,50,71,1,False
  20. 18,Pidgeot,Normal,Flying,479,83,80,75,70,70,101,1,False
  21. 19,Rattata,Normal,,253,30,56,35,25,35,72,1,False
  22. 20,Raticate,Normal,,413,55,81,60,50,70,97,1,False
  23. """
  24. pokemons = pokemons.strip()
  25. pk_splt = pokemons.splitlines()
  26. print(len(pk_splt))
  27.  
  28. i = 0
  29. while i < len(pk_splt):
  30.     pk_splt[i] = pk_splt[i].split(",")
  31.     print(pk_splt[i])
  32.     i += 1
Advertisement
Add Comment
Please, Sign In to add comment