Python is a dynamic, high-level language. Its design focuses on clear syntax, an intuitive approach to object-oriented programming, and making the right way to do things obvious. Python supports modules, exceptions, had an extensive standard module library. Python can also be embedded in other ...
6
votes
2answers
140 views
Complex string matching with fuzzywuzzy
I'm attempting to write a process that matches obscure strings to a single 'master string' for further processing. I have a lot of data that looks something like this:
Basketball
Basket Ball
Football
...
28
votes
8answers
1k views
Is C# development effectively inseparable from the IDE you use?
I'm a Python programmer learning C# who is trying to stop worrying and just love C# for what it is, rather than constantly comparing it back to Python.
I'm caught up on one point: the lack of ...
0
votes
2answers
122 views
Are there any good python libraries for programming GUI's on MAC and Windows? [closed]
Need a a toolset / framework that I can use to build GUI apps on both Mac and Windows, without too much stuffing around. Any obvious candidates?
1
vote
4answers
215 views
Is it a bad practice to write shell script with many if-else statment and for loops?
I am maintaing several data process shell scripts which are full of if-else statements and for loops . I try to make the scritps tidy and easy to debug.
When I read some suggestions about shell code ...
2
votes
1answer
75 views
Guidelines for creating referentially transparent callables
In some cases, I want to use referentially transparent callables while coding in Python. My goals are to help with handling concurrency, memoization, unit testing, and verification of code ...
1
vote
3answers
60 views
Test case as a function or test case as a class
I am having a design problem in test automation:-
Requirements - Need to test different servers (using unix console and not GUI) through automation framework. Tests which I'm going to run - Unit, ...
0
votes
3answers
87 views
How to balance programming projects between feasibility and usefulness [closed]
I've become fairly competent as a programmer, but I would not say I am a master. I work independently, most as a hobby, although I have done some freelance PHP work. I tend to find myself dabbling in ...
1
vote
2answers
99 views
What does the python Codecs module do?
I just read through the documentation on the Codecs module, but I guess my knowledge/experience of comp sci doesn't run deep enough yet for me to comprehend it.
It's for dealing with ...
8
votes
2answers
229 views
What is the justification for Python's power operator associating to the right?
I am writing code to parse mathematical expression strings, and noticed that the order in which chained power operators are evaluated in Python differs from the order in Excel.
From ...
2
votes
0answers
32 views
Problem using python QPID and gevent together [closed]
I have a python script that pulls messages from an Apache QPID queue, and then uses gevent to perform (IO-bound) tasks on those messages in parallel.
The queue that this script pulls from was ...
-5
votes
0answers
37 views
What is the right technology stack for bundled, web based application server? [closed]
I know it could be Java. For example, Atlassian JIRA, Thoughtworks Studio products (all that I know) are based on Java. However, I am looking at alternatives, other than JVM based for a web based, ...
0
votes
1answer
52 views
where can I find what version of python the python application has been developed in? [closed]
I'm trying to find out what version of python my application has developed within, in order for me to be able to create a virtual environment based on that specific python version.
3
votes
3answers
109 views
Difference between a REPL and interactive shell
Noob question. I am not quite able to tell the difference between a REPL and an interactive shell just by reading the definitions on Wikipedia.
Wiki notes that REPL is a particular kind of ...
2
votes
4answers
79 views
Call a script over the network
I have a Python script on a box that I want to call from a Java server, over the network. I know that I can start a server on the Python side and then connect to it from the Java site, but I am trying ...
-2
votes
1answer
65 views
still about perl vs python but (to me) slightly different from what has been asked [closed]
Being a newbie to coding, I read from this site that Perl is still as viable as it has been, while Python, quoted from someone else's post, is good but just "snake oil" (not sure what this refers to ...