Tagged Questions
0
votes
1answer
56 views
Tricks for writing clean code [closed]
Heres a python code
def issubset(a,b): i=0
j=0
while i < len(a):
c = False
while j < len(b):
if a[i] == b[j]:
c = True
j = j+1
...
0
votes
3answers
53 views
Python print out float or integer
How can i print out float if the result have decimal or print out integer if the result have no decimal?
c = input("Enter the total cost of purchase: ")
bank = raw_input("Enter the bank of your ...
1
vote
4answers
43 views
Python merge dictionaries with custom merge function
I want to merge two dictionaries A and B such that the result contains:
All pairs from A where key is unique to A
All pairs from B where key is unique to B
f(valueA, valueB) where the same key ...
0
votes
1answer
55 views
Checking if function was called with right arguments
Which coding-style is better / correct and why?
Using assert statement in each function:
def fun_bottom(arg):
assert isinstance(arg, int)
#blah blah
def fun_middle(arg):
assert ...
-2
votes
2answers
39 views
what is special to use class structure in python albeit it is possible to import functions from plain script? [closed]
I am a newbie programmer at python and I am thinking about the class usage of the python. Although it is possible to import all the functions inside a script, what might be the situation that faces to ...
8
votes
6answers
362 views
Python, best way to write a sum of two for loops
Normally I know we can do sum([func(x,x) for x in i]), but I got an if check and two for loops, so what is the most pythonic way to write the code bellow. you can assume that similarity will return a ...
5
votes
2answers
53 views
Python exception chaining
Is there a standard way of using exception chains in Python? Like the Java exception 'caused by'?
Here is some background.
I have a module with one main exception class DSError:
class ...
5
votes
3answers
124 views
Is it bad practice to write a whole Flask application in one file?
I'm currently writing a web application in Python using the Flask web framework. I'm really getting used to just putting everything in the one file, unlike many other projects I see where they have ...
-1
votes
0answers
51 views
Writing beautiful and efficient code in python - how can I improve this code? [closed]
I have often read about how important clear and efficient code is. Also often people talk and write about 'beautiful' code. Some hints and critic from experienced developers for the following code ...
3
votes
1answer
47 views
settings namespace in Django
I'm writing reusable Django app. What are best practices for adding own settings into settings.py ? Do I need to prefix every setting with my app_name, or maybe I should make only one setting dict. ...
1
vote
1answer
58 views
Python coding style - properties/setters inside class?
Should methods inside a class use property/setter accessors, a la "add_to_field" or should they access the private variables directly a la "subtract from field"?
class Example(object):
def ...
3
votes
1answer
90 views
Python PEP 8: Blank lines at the beginning of a module
There is a question who treat about this but not talk about all the points I interested.
PEP 8 says about blank lines:
Separate top-level function and class definitions with two blank lines.
Then ...
-1
votes
2answers
34 views
Avoid multiple similar lines in python
My question is about coding style: When I want to apply a procedure to several variables, like:
from pylab import vstack # the function to apply to many variables
v1 = range(5) # some dummy ...
2
votes
3answers
81 views
(python) Should my variable be local or global? (best practice)
When declaring a constant that is only used one function, should that variable be declared locally since it is only used by that function, or globally since it is never going to change?
IE which is ...
0
votes
2answers
62 views
prevent the closure of command Prompt with Python when an “exception” occurs
I have a script in Python 2.7 converted in executable with py2exe. The INPUT data is a text file where the delimiter need to be valid following this function:
# Check if delimeter is valid
def ...
3
votes
2answers
78 views
When should I use underscores between words in Python function names?
The style guide says that underscores should be used, but many Python built-in functions do not. What should the criteria be for underscores? I would like to stay consistent with Python style ...
2
votes
3answers
80 views
expression or statement?:'if a : do_something()' or '(a and do_somthing())',which is better?
i found that python can easily coding in 'lisp' style.
exp:
normal way:
if a:
do_something()
'function' way:
(a and do_something())
normal way:
if not a:
do_somthing()
elif b:
...
2
votes
2answers
75 views
Is this an acceptable way to use str.format()?
I've recently decided to start using .format() instead of % (see this question). Instead of the {0}, {1} syntax, I'm wondering if the following is an acceptable use:
import os
def ...
16
votes
1answer
334 views
How to cleanly keep below 80-char width with long strings?
I'm attempting to keep my code to 80 chars or less nowadays as I think it looks more aesthetically pleasing, for the most part. Sometimes, though, the code ends up looking worse if I have to put line ...
-5
votes
1answer
66 views
How to write python in pythonic way rather than traditional Object-Oriented way? [closed]
I'm familiar with Java/C# and have some experience.
Recently I pick up Python by doing small projects. What I found is I can Not get rid of Java/C# style while writing python.
For example:
I would ...
0
votes
0answers
36 views
Where should I define a 'static-like' method for a model in my django app?
Let say I have a model class, that has many instances in my database, and I want to compute and display some stats about all the objects of that model in my index page. In c++ that would be a static ...
0
votes
1answer
66 views
using islice to read a text file chunk-by-chunk
i have a text file with several million of point (x,*y*,z etc). I am trying to read the first million of lines with islice in order to initialize a dictionary
from collections import defaultdict
...
2
votes
1answer
124 views
Simple indeterminate progress bar in Python [closed]
Even when I am afraid to be a bit off-topic, but I am not sure where else to ask this, sorry!
I wish to build a **simple** indeterminate progress bar in Python
there is a really valid progression ...
6
votes
2answers
56 views
How do I prevent users from importing x from a submodule when it exposed in the parent using __all__
Consider the following scenario:
You have a module M defined in m.py containing a function f.
It can be called like this:
import M;
M.f()
The module grows to a size where it is impractical to ...
0
votes
3answers
56 views
is there more clear way to do matrix of random numbers
I am trying to create a matrix of random numbers, but my solution is too long and looks ugly
random_matrix = [[random.random() for e in range(2)] for e in range(3)]
this looks ok, but in my ...
0
votes
1answer
37 views
PEP8 E112 Indent Error when there shouldn't be?
I've read most that I can on the error and I can't see how it pertains to this class I'm writing.
# Copyright (C) 2013 Marco Ceppi <marco@ceppi.net>.
#
# This program is free software: you can ...
1
vote
3answers
102 views
Python PEP 8 docstring line length
I've recently begun figuring it would be a good idea to follow PEP 8. I made my editor display the 80-column mark and am now attempting to wrap lines to fit in it. My question is this. In PEP 8 it ...
1
vote
0answers
48 views
correct style to name a files in a project for Python [closed]
I am doing a small project in Python to calculate some statistical parameter in a polygon. I have grouped all statistical formulas in a single *.py and named "formulas.py".
In order to follow a ...
5
votes
4answers
138 views
How to selectively import module in python?
I have several different modules, and I need to import one of them depending on different situations, for example:
if check_situation() == 1:
import helper_1 as helper
elif check_situation() == ...
0
votes
4answers
61 views
append in a list in Python using result value or a function
are the both approaches equivalent from a point of view of performance and coding-style?
def foo(n):
return n*2
# case 1 with ".append(function())"
mylist = [1,2,3,4,5,6,7,8,9,10]
result = ...
3
votes
4answers
110 views
Writing big python classes the right way [closed]
When writing a python class that have different functions for getting the data, and parsing the data; what is the most correct way?
You can write it so you are populating self.data... one by one, and ...
1
vote
1answer
198 views
improve in coding saving how to check if two line segments are crossing in Python
Consider the following example of crossing lines:
l1 = ((20,5),(40,20))
l2 = ((20,20),(40,5))
l3 = ((30,30),(30,5)) # vertical line
I developed the following code to compute the x,y of the ...
0
votes
2answers
74 views
combine two loops in python
suppose to have two polygons p1 and p2, where p2 is completely inside p1
p1 = [(0, 10), (10, 10), (10, 0), (0, 0)]
p2 = [(2, 6), (6, 6), (6, 2), (2, 2)]
degree_of_contact = 0
xyarrays = [p1,p2]
...
3
votes
2answers
76 views
Are multiple exits viable to flatten a long Python function?
I have a long Python function of that structure:
def the_function(lots, of, arguments):
return_value = None
if some_important_condition:
# a lot of stuff here
return_value ...
0
votes
2answers
69 views
python - When function need to became a class
I am learning the use of class in Python. Typically I write several function to run my script, but recently i am writing using class.
I am sorry for the basic question, but when is the limit to use a ...
1
vote
1answer
110 views
using @property to build a class in Python
I am not clear on the use of @property (advantages and disadvantages). I want to ask for some example using this class built with the help of Martijn.
The data (in text format) always has a x,y, and ...
2
votes
2answers
46 views
Resolving how to give an attribute in a class in Python
I have the following class:
class Point(object):
__slots__= ("x","y","z","data","classification")
def __init__(self,x,y,z,n=None):
self.x = float(x)
self.y = float(y)
...
1
vote
6answers
82 views
coding style of a python function
Need an opinion.
I have a function that defines some data. My idea is that the user can tell it to read the data from a file:
acquire_data('read_from_file',filename)
or the user can supply data ...
3
votes
2answers
107 views
Using len() and def __len__(self): to build a class
Just curious,
Is there any difference (advantages and disadvantages) between using len() or def __len__() when I build a class? And which is the best Python style?
class foo(object):
def ...
0
votes
1answer
69 views
Python: resolve problems with my Class [closed]
I have the following class
def get_percentile(obs,*args):
lstper = []
for arg in args:
lstper.append(np.percentile(obs,arg))
return lstper
get_percentile([1,2,3,4,5],25,50,75)
...
0
votes
1answer
41 views
how to build a function in order to process single iterable or two or more argument
i have the following function example (average of a list of number):
def avg(obs):
return (1. / len(obs)) * np.sum(obs)
avg([1,2,3,4,5])
3.0
I am interesting t understand how use a single ...
0
votes
1answer
54 views
Python suggestion how to improve my class using nested function
I am working on my own class metric
import numpy as np
class Metric(object):
def __init__(self,*args):
self.min = min(args)
self.max = max(args)
self.median = ...
1
vote
2answers
114 views
Python naming convention for functions returning functions [closed]
What is the Python naming convention, if any, for functions that return another function?
0
votes
1answer
68 views
Extracting specific lines in python from a printing it
I have a data file with a whole bunch of data information and im trying to extract the IP TIME and length from the file. I manage to extract time, but i am not sure how you extract the length and IP. ...
3
votes
3answers
163 views
Using static methods in python - best practice
When and how are static methods suppose to be used in python? We have already established using a class method as factory method to create an instance of an object should be avoided when possible. In ...
1
vote
2answers
50 views
python syntax while using dict
what is the correct way :
def my_func():
return {'key1': val1, 'key2': val2}
or
def my_func():
return
{
'key1': val1,
'key2': val2
}
The second way seems more readable ...
3
votes
4answers
54 views
How to try several methods with flat style?
If I want to try many way to avoid some error, I may write:
try:
try:
trial_1()
except some_error:
try:
trial_2()
except some_error:
try:
...
1
vote
1answer
157 views
Factory method for python object - best practice
This is a question regarding the best practice for creating an instance of a class or type from different forms of the same data using python. Is it better to use a class method or is it better to use ...
0
votes
4answers
99 views
If the convention in Python is to capitalize classes, why then is list() not capitalized? Is it not a class?
Often when I see class definitions class Foo:, I always see them start with upper case letters.
However, isn't a list [] or a dict {} or some other built-in type, a class as well? For that matter, ...
0
votes
0answers
60 views
Python using a bouncing progress bar when the length of the loop is unknown
I have a file in in *.las format open with Liblas.
from liblas import file as lasfile
infile = "C:\\myfile.las"
for p in lasfile.File(inFile,None,'r'):
#do something
I wish to add a ...

