0
votes
1answer
27 views
python foreign character in csv
I have a little csv which contains foreign characters, like Chinese.
How can I display them in Chinese instead of those \xa5\\xa4\ string???
Thanks
2
votes
5answers
151 views
Distributing Python programs
How do I let my friends use my Python programs? They don't have python installed, but they can use command line programs. I don't have the skill to write GUI.
Let, say I am writing some calculus …
1
vote
5answers
96 views
Python: Split list into list of dicts?
Just beginning with python and know enough to know I know nothing. I would like to find alternative ways of splitting a list into a list of dicts. Example list:
data = ['ID:0:0:0',
…
2
votes
11answers
235 views
Ternary Operator - Python
def val():
var = float(raw_input("Age:"))
status = ("Working","Retired")[var>65]
print "You should be:",status
I was looking on how the ternary operator is implemented in python. I …
0
votes
5answers
73 views
python lottery suggestion
I know python offers random module to do some simple lottery. Let say random.shuffle() is a good one.
However, I want to build my own simple one. What should I look into? Is there any specific …
0
votes
4answers
199 views
Making Python code Pythonic
How would you make the give code more Pythonic?
I want to get Paths out of the sample like /usr/local/sources/devel/algebra.py: def _alg(...) without the character :.
My code
import os
FunctionPath …
1
vote
6answers
120 views
os.path.join python
Hello,
The below code will not join, when debugged the command does not store the whole path but just the last entry.
os.path.join('/home/build/test/sandboxes/', todaystr, '/new_sandbox/')
When I …
3
votes
1answer
93 views
Python Format string “}” fill
Python 2.6 defines str.format(…), which, from Python 3.0, is preferred to the old % style of string formatting. Looking at the "mini-language", however, it seems that it is impossible to use the } …
2
votes
5answers
112 views
How to get value on a certain index, in a python list?
I have a list which looks something like this
List = [q1,a1,q2,a2,q3,a3]
I need the final code to be something like this
dictionary = {q1:a1,q2:a2,q3:a3}
if only I can get values at a certain …
1
vote
3answers
66 views
Variable referenced instead of copied
When I run the code below it removes deleted_partner from B. But as it removes it from B it also removes it from A. So that when I try to remove it from A the program crashes. What is the problem?
…
0
votes
6answers
126 views
int object is not iterable?
inp = int(input("Enter a number:"))
for i in inp:
n = n + i;
print (n)
... throws an error: 'int' object is not iterable
I wanted to find out the total by adding each digit, for eg, 110. 1 …
0
votes
4answers
117 views
Understanding Lambda
X = 5
L = list(map(lambda x: 2**X, range(7)))
print (L)
... I'm expecting this to return:
[1, 2, 4, 8, 16, 32, 64]
...instead, it returns:
[32, 32, 32, 32, 32, 32, 32]
What am I doing wrong?
4
votes
11answers
306 views
“For” loop first iteration
Greetings pyc-sires and py-ladies,
I would like to inquire if there is an elegant pythonic way of executing some function on the first loop iteration.
The only possibility I can think of is:
first = …
0
votes
9answers
146 views
calling an outside function in python
I am trying to return (execute) a function from another file in an if statement.
I have read that the return statement will not work, I was hoping someone would know what statement would allow me to …
0
votes
4answers
144 views
Defining a class
Just a quick question, im defining a class were only a set of integers is used. I cannot use the following datatypes in defining my class: set, frozenset and dictionaries.
i need help defining:
…
