1
vote
7answers
81 views
python for in control structure
I am a php programmer trying to understand python's for in syntax
I get the basic for in
for i in range(0,5):
in php would be
for ($i = 0; $i < 5; $i++){
but what does thi …
2
votes
5answers
90 views
Is there something like for i in range(length) in PHP?
In python we have:
for i in range(length)
What about in PHP?
-2
votes
4answers
147 views
To understand: From PHP Array to Python ?
This is Common task In PHP and other programming languages.I moved from PHP developer.
I want to make sure with this collections.
Anyone have who good in python please help me to u …
1
vote
6answers
188 views
Effective Interpreted Programming Language for File/Image manipulation
I need to make a script to read images from a directory, rename them, resize them to a MAX_HEIGHT, MAX_WIDTH, put a watermark logo and save them in JPG.
I was thinking on doing th …
1
vote
7answers
208 views
Is there an algorithm to find unique combinations of 2 lists? 5 lists?
I have N Lists I'd like to find unique combinations of. I've written it out on my whiteboard and it all seems to have a pattern, I just haven't found it yet. I feel I can express a …
0
votes
2answers
30 views
What is the best framework/cms and shopping cart plugin/module/etc. combination?
What is the best framework/cms shopping cart for a beginner php/python developer to implement? I'm potentially going to be developing a site with an online catalog of about one hu …
-2
votes
3answers
84 views
Converting RE code from PHP to Python
I have done a simple program in PHP, now need to convert this into Python:
$string="Google 1600 Amphitheatre Parkway Mountain View, CA 94043 phone";
preg_match_all('/[0-9]+.{10,25 …
0
votes
13answers
340 views
How can I measure the execution time of a for loop?
I want to measure the execution time of for loops on various platforms like php, c, python, Java, javascript... How can i measure it?
I know these platforms so i am talking about …
15
votes
13answers
1k views
Is switching from PHP to Python worth the trouble
If you had switched from php + (framework of choice) to python + (framework of choice) as your development platform, what would you say have been the upsides/gains of the switch?
…
3
votes
3answers
100 views
Checking if a domain name is registered
How would I go about checking if a domain name is registered? I was thinking about checking if it has a corresponding IP but it doesn't seem to work as well as I had hoped. Is ther …
2
votes
3answers
91 views
Finding a logic bug in converting Python code to PHP
The input 7|12|1|14|2|13|8|11|16|3|10|5|9|6|15|4 returns 0 by the PHP -code, while 1 by Python code: 1 means that the sums of the 4x4 magic square are the same, while 0 means the r …
12
votes
17answers
724 views
Java or Python for an intermediate PHP guy. Career advice.
I'm an intermediate PHP developer looking to take up a new language. I'm completely torn as to where to go at this point. There's so many languages related to web development and …
1
vote
7answers
236 views
php developer - what language next? [closed]
Possible Duplicates:
Java or Python for an intermediate PHP guy. Career advice.
What Should I Learn After PHP?
I've been developing in PHP for about 6 or 7 years now. B …
62
votes
15answers
4k views
How to find list of possible words from a letter matrix [Boggle Solver]
Lately I have been playing a game on my iPhone called Scramble. Some of you may know this game as Boggle. Essentially, when the game starts you get a matrix of letters like so:
F …
0
votes
2answers
37 views
How can I use PHP’s gettext in conjunction with python’s gettext?
I have an app that I'm migrating portions of to Django, but python and php have a different string format. E.g.
"Hello %1s" in php vs. "Hello {0}" or "Hello {name}" in python.
…
