User:Kittly2008: Difference between revisions

The most up-to-date image and information guide on Webkinz Classic items, events, and more!
Content added Content deleted
mNo edit summary
mNo edit summary
Line 12: Line 12:
for i in range(len(list_original)):
for i in range(len(list_original)):
print("|{{!}}[[File:"+list_lower[i]+".png]]<br>"+list_original[i]) </syntaxhighlight>
print("|{{!}}[[File:"+list_lower[i]+".png]]<br>"+list_original[i]) </syntaxhighlight>


To-do list:
* [https://webkinznewz.ganzworld.com/announcements/rescue-the-wolf-fc/ Find that Wolf]
* [https://webkinznewz.ganzworld.com/category/announcements/page/95/ Continue searching for non-annual and unusual click-to wins, clubhouse rooms, etc.]

Revision as of 03:00, 2 November 2021

Hi! I'm kittly2008 on WW and kittyloveyou2008 on Instagram.

  • My wishlist/trade list is at Wishlist/Tradelist .
  • I designed the Halloween Ball Theme. Have a good one!


Here is a Python Script to convert lists of items into WPG format. Be sure to use a delimiter to get the names of your items in quotation marks for the code to work:

list_original=["Angel Costume","Aztec Queen Costume","Banana Split Costume","Black Ninja Costume","Blue Football Costume","Candy Corn Witch Costume","Cleopatra Costume","Dark Queen Costume","Dragon Costume","Egyptian Mummy Costume","Firefighter Costume","Frog Prince Costume","Garden Gnome Costume","Ghost Hunter Costume","Goblin Costume","Haunted Hotel Server Costume","Haunted Hotel Staff Costume","Knight’s Costume","Ladybug Costume","Martian Costume","Pink Cowgirl Costume","Pumpkin King","Pumpkin Queen ","Red Football Costume","Red Ninja Costume","Robot Costume","Scarecrow Costume","Toadstool Fairy Costume","Vampire Costume","Viking Princess Costume","x-Ray Costume","Zombie Costume"]
list_lower=[x.lower() for x in list_original]
list_lower=[x.replace(" ", "") for x in list_lower]
for i in range(len(list_original)):
 print("|{{!}}[[File:"+list_lower[i]+".png]]<br>"+list_original[i])


To-do list: