from multiprocessing import Pool
from itertools import product
def sym(lst):
x,y=lst
tmp=x*y
if rec(tmp):
return tmp
else:
return None
def rec(num):
num=str(num)
if num == "".join(reversed(num)):return True
else:return False
if __name__ == "__m
I'm planning to learn one more language with my python.
Someone recommended to do Lisp or Clojure, but I don't think it's a
good idea(do you?)
So, I consider C# with ironpython or Java with Jython.
It's a hard choice...I like Visual studio(because my first lang is VB6
so I'm familiar with that)
but
I made a cipher app but to make easy, I want to make it Windows
rightclick menu can execute it
I found the way with dealing with Registry
[HKEY_CLASSES_ROOT\Directory\Background\shell\app]
[HKEY_CLASSES_ROOT\Directory\Background\shell\app\command]
@="C;\myapp filelocation"
but I don't know ho
I'm very new to programing though I learn very little of java,C
I love python and have fun to do something with it
but some people said python's future perhaps not that bright.
I know this question maybe looks like an idiot:(
I really hope the python rules long~ time.
what do you think about future
I'm very new to programing though I learn very little of java,C
I love python and have fun to do something with it
but some people said python's future perhaps not that bright.
I know this question maybe looks like an idiot:(
I really hope the python rules long~ time.
what do you think about future
I'm making cipher program with random.seed(), random.random() as the
key table of encryption.
I'm not good at security things and don't know much about the
algorithm used by random module.
Is it really random or safe enough to keep my data safe?
--
http://mail.python.org/mailman/listinfo/python-l