Oh i thaught maybe python comes with something native, bevore i install
something new i think i might better look into if kivy can do the job - thats
allready installed...
--
https://mail.python.org/mailman/listinfo/python-list
hello, i have a picture and i want to merge it with an other picture which is
half transparent and the first picture will shine through it, has python the
library's to do this?
--
https://mail.python.org/mailman/listinfo/python-list
i have a list and i want to search for a certain string and replace it.
i think i got it now...
sbxe1 = list([['type','ter','lala'],'name'])
def parsesb(lis, string, replacement):
for num, nam in enumerate (lis):
if type(nam) == list:
parse
thanks i was not able to figure it out some days before but now i think i can
do it myself: a nice function that searches a string in a list.
def parsesb(lis, string):
print lis
for num, nam in enumerate (lis):
print num, nam
if type(nam) == list:
Hello,
i use a load of lists and often i dont know how deep it is, how can i parse
that lists elegantly (without a bunch of for loops)
--
https://mail.python.org/mailman/listinfo/python-list
Hello all,
I am designing a roleplay game, right now i think i might go into the anime
direction and style it accordingly... how do i get animations and images to
give it a nice feeling. Where do you get your graphics from for such kind of
games do you paint them yourself?
--
https://mail.pyth