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
 
(35 intermediate revisions by the same user not shown)
Line 1: Line 1:
''' Hi! I'm kittly2008 on WW and kittyloveyou2008 on Instagram.'''
==== Hi! I'm kittly2008 on WW and kittyloveyou2008 on Instagram. My wishlist/trade list is at [https://docs.google.com/document/d/e/2PACX-1vTu_taFglmmM6BeXvafAE90GK-kTcsWQqdJ1zCuls6sEFeL7f5dgnoTzlJiu0JBVgbtzBAtjnen96JX/pub Wishlist/Tradelist] . I designed the Halloween Ball Theme. Have a good one! ====
* I designed the Halloween Ball Theme. Have a good one!


My pages
* [[(Archive) Kinzville Park Events]]


==Code for Editors==
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"]
Here is a Python Script to convert lists of items into WPG format. You can type whatever you find and need!
* list_lower=[x.lower() for x in list_original]
[https://trinket.io/python/6cedd34c83 Try the script here.]
* list_lower=[x.replace(" ", "") for x in list_lower]
<syntaxhighlight lang="python">
* for i in range(len(list_original)):
# 17 November 2021
* print("|{{!}}[[File:"+list_lower[i]+".png]]<br>"+list_original[i])''
# kittly2008 #
list_original=[]
x = []
while x != "stop":
x = input('Enter a Webkinz Item Name : ')
if x == "stop":
break
list_original.append(x)
list_original.sort()
list_lower=[x.lower() for x in list_original]
list_lower=[x.replace(" ", "") for x in list_lower]
empty_list=[]
for i in range(len(list_original)):
print("|{{!}}[[File:"+list_lower[i]+".png]]<br>"+list_original[i])
</syntaxhighlight>

Steps:
* on the right, click on the text to start typing.
* enter one item, then hit enter.
* Type "stop" when you are done.
* enjoy the sorted script!

==To Do==
To-do list/unknown categories
* [https://webkinznewz.ganzworld.com/announcements/collect-kinzville-hot-dog-ingredients-starting-today/ Hot Dog]
* [https://webkinznewz.ganzworld.com/announcements/the-countdown-to-st-patricks-day-starts-today/ St Patricks Countdown]
* [https://webkinznewz.ganzworld.com/category/announcements/page/65/ Find the Winter Polar Cap]
*[https://webkinznewz.ganzworld.com/announcements/get-cupcakes-from-your-bffs-today/ Get Cupackes from your BFFS]
* [https://webkinznewz.ganzworld.com/category/announcements/page/95/ Continue searching for non-annual and unusual click-to wins, clubhouse rooms, etc.]

Latest revision as of 01:30, 13 March 2022

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

  • I designed the Halloween Ball Theme. Have a good one!

My pages

Code for Editors

Here is a Python Script to convert lists of items into WPG format. You can type whatever you find and need! Try the script here.

# 17 November 2021
# kittly2008 #
list_original=[]
x = []
while x != "stop":
  x = input('Enter a Webkinz Item Name : ')
  if x == "stop":
    break 
  list_original.append(x)
list_original.sort()
list_lower=[x.lower() for x in list_original]
list_lower=[x.replace(" ", "") for x in list_lower]
empty_list=[]
for i in range(len(list_original)):
 print("|{{!}}[[File:"+list_lower[i]+".png]]<br>"+list_original[i])

Steps:

  • on the right, click on the text to start typing.
  • enter one item, then hit enter.
  • Type "stop" when you are done.
  • enjoy the sorted script!

To Do

To-do list/unknown categories