Tagged Questions
1
vote
1answer
37 views
numpy get index where value is true
>>> ex=np.arange(30)
>>> e=np.reshape(ex,[3,10])
>>> e
array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[10, 11, 12, 13, 14, 15, 16, 17, 18, 19],
[20, 21, 22, ...
-4
votes
4answers
103 views
How to use “While()” in python [closed]
Hi all my code below allows me to extract some specific informations from the data and i would like that someone helps me to write this more properly by using a while so i can do this for many lines ...
0
votes
1answer
74 views
multiple instances of python in separated windows
I'm using PyUserInput and I want to run multiple python scripts in separate windows
is it possible to make the script run inside of a window while still allowing me to do other things with my mouse ...
4
votes
2answers
39 views
Dynamically escape % sign and brackets { } in a string
I'm working on a web application.
I need to escape % and { }, if any exists, for further string replacement using either .format() or %s
I tried urllib quote_plus, re.escape() but none works.
The ...
0
votes
1answer
46 views
How to encode unicode to urlenconing in python 2.7?
How to encode unicode to urlenconing in python 2.7
I want to encode unicode like '€'.
But I don't konw what should I do...
>>> u='€'
>>> _u=u'€'
>>> u
'\xa2\xe6'
...
1
vote
1answer
124 views
django: How to pass variable to class?
urls.py
url(r'^customer/(?P<name>[^\s]+)/$', customerDetailView.as_view(), name="customerDetailView"), #pass 'name' variable
and
views.py
class customerDetailView(DetailView):
...
-1
votes
1answer
65 views
Printing out a number as integer (no decimals)
Please can any one help me with Python? When I run the following code I get an output of 1.0 for both L_ AND L_1, but I want it to be just 1.
import math
d_ = 0 # My student number last ...
-1
votes
1answer
51 views
Login into a webiste using python [closed]
I dont know about urllib and urllib2 so can someone help me by telling me any easy tutorials or documents because i wanna login into my college website login page which has only Username and Password ...
0
votes
2answers
55 views
Splitting a string in Python to 3 segments appointed to 3 variables depending on item count
I'm new to Python and struggling to solve the following issue the most Pythonic way.
I have a string (Example states given below) which needs to be split (.split('/', 2)) and appointed (up) to 3 ...
2
votes
1answer
801 views
import zlib ImportError: No module named zlib
# pythonbrew venv create django1.5
Creating `django1.5` environment into /usr/local/pythonbrew/venvs/Python-2.7.3
Traceback (most recent call last):
File ...
0
votes
2answers
68 views
assigning functions to variables in python?
Hello i have a weird doubt..
MY code is
def prints():
print " I WILL DIE HEHE"
def add(a,b):
next = a
print " Added sum is %d " % (next + b)
next = prints()
...
2
votes
2answers
104 views
Why does Pip ignore conflicting dependencies?
If I create a dummy package -- here's /tmp/example_package/setup.py (note the requirements):
from distutils.core import setup
setup(name='my_project',
description="Just a test project",
...
0
votes
1answer
62 views
Don't want the single quotes in my python code
I am using Python 2.7... The problem I am facing is when i use this code
print "How old are you?",
age = raw_input()
print "How tall are you?",
height = raw_input()
print "How much do you ...
2
votes
3answers
78 views
Should I use “self” to define variables / objects of class instanced which I will not need to reach from the outside?
I am not a complete beginner but fairly new to Python. Whilst working on a project today I just had an idea and wondered regarding the usage of "self"; about which I've been reading for the past some ...
1
vote
3answers
74 views
How can I call methods between two classes?
I have a class A. During the __init__ method of an instance of A;
I create these following two instances of classes B and C:
b = B()
c = C()
Once all's set, I need to call, within a method of B, ...
1
vote
2answers
85 views
Automatically import to all Python files in the given folder?
I am relatively quite new to Python and I try to learn the "Pythonic" way of doing things to build a solid foundation in terms of Python development. Perhaps what I want to achieve is not Python at ...
-1
votes
3answers
80 views
Replacing words in string
Okay, so I have the following little function:
def swap(inp):
inp = inp.split()
out = ""
for item in inp:
ind = inp.index(item)
item = item.replace("i am", "you are")
...
4
votes
1answer
104 views
How to store a hashtable of lists in Python (hashed by identity)?
I need to store a set of lists hashed by identity: two lists are equal iff they are the same object.
Not only does using tuples not make much sense semantically, but I also need to mutate the lists ...
3
votes
3answers
221 views
Python - get slice index
Is it possible to get index values (start,end) of a slice? For example
In [1]: s = "Test string"
In [2]: s[-6:] # get slice indexes (5,11)
Out[2]: 'string'
In [3]: s = "Another test string"
In [4]: ...
5
votes
2answers
127 views
Python combination generation
I am new to programming and to Python. Not sure how to proceed to achieve this (explained below) problem, hence the question.
I have n number of lists, each containing 1 or more items. I want to have ...
4
votes
2answers
89 views
Is there a way to detect when a python program is going to end?
Is there a way to detect when a python program is going to end? Something like a callback I can connect to?
I have a class thats keeping a cache and I'd like to write the cache out to disk before the ...
0
votes
3answers
264 views
Python object cache
I tried a bit of code but it seems to cause issues:
class Page:
cache = []
""" Return cached object """
def __getCache(self, title):
for o in Page.cache:
if ...
2
votes
2answers
66 views
Injecting variable before/during import
Basically, I'd like to force a variable, lets call him jim into a plugin I load as a global, before the plugin loads, for instance:
load_plugin('blah', variables={'jim':1}) #For instance
And ...
0
votes
2answers
189 views
Compute bill for a super market
Below is the code to compute the bill for the supermarket. Everything is ok but the issue is that I am told that this solution would not work if the input is only apple.
I do believe that the value ...
0
votes
1answer
292 views
Calculating the final grade from tests [closed]
Lloyd = {
"name":"Lloyd",
"homework": [90,97,75,92],
"quizzes": [ 88,40,94],
"tests": [ 75,90]
}
Alice = {
"name":"Alice",
"homework": [100,92,98,100],
"quizzes": ...
1
vote
3answers
179 views
Python: Combining two strings and selecting unique elements out of it
I would like to state that I am new to programming and to Python. I did try doing research before posting this question but my lack of knowledge of even basics did not help yielding any results, thus ...
0
votes
2answers
98 views
python and python2.7 runs different python instances
This is the output when I write whereis python2.7
python2.7: /usr/local/bin/python2.7 /usr/local/lib/python2.7 /opt/python2.7.1/bin/python2.7
Version of python under /usr/local/ is python2.7.2 and ...
4
votes
3answers
110 views
In Python 2.7 why is grid = [[“A”]*5]*5 different than grid = [] grid.append[…]
I am trying to build a gameboard that is a 5x5 grid in python 2.7 represented as a 2 dimensional list.
I tried writing it as board = [["O"]*cols]*rows (cols and rows are already declared to be 5) but ...
1
vote
1answer
39 views
Re.search of Dates with backslash characters in the format
I will say thanks in advance for any assistance and say that I have tried to search online for a solution.
I'm running Python 2.7.
I'm trying to use re.search to match a date in the format ...
0
votes
1answer
75 views
Variables scopes in python, the for case why it works? [duplicate]
In the python example below, methods and attributes seem to be out of scope but they still work, what is happening?
for module in output:
a = 1
attributes=[]
methods=[]
for branch in ...
3
votes
2answers
67 views
What does the interpreter do, when executing “from xyz import Abc”?
What does the interpreter do in these cases?
from xyz import Abc
from xyz import *
Does it has to parse the full file xyz.py anyway? Should one way be faster then the other? Or is it merely a ...
3
votes
3answers
79 views
point from a list into a dicitonary variable
Assume you have a list
a = [3,4,1]
I want with this information to point to the dictionary:
b[3][4][1]
Now, what I need is a routine. After I see the value, to read and write a value inside b's ...
0
votes
1answer
70 views
Why is there idlelib.sys
what I do is the following:
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import sys
...
1
vote
1answer
61 views
Remove doc strings but not asserts from compiled CPython
I want to remove doc strings from a Python program but leave asserts (and __debug__ sections) in. I have been using the -OO flag to generate .pyo files but according to the documentation that removes ...
0
votes
0answers
141 views
python sqlite3 “order by” didn't work correct
I have an sqlite database. If I make request by SQliteManager all works correct, but if I make it by python script order by clause doesn't work(
This is the request:
select
cal_todos.title,
...
0
votes
2answers
319 views
C++ python library not found. Code Blocks GNU GCC
So this is my first time trying to use python within a C++ program, and i am running into some problems with getting the library linked.
So i use the Code Blocks IDE with the GNU GCC compiler, and i ...
1
vote
4answers
331 views
How do I specify custom comparator for the “in” keyword in Python?
I am fairly new to Python, so I welcome alternative approaches.
I have a list of dictionaries that I start with (read from a file).
Now I have a bunch of additional dictionaries that I'd like to add ...
2
votes
3answers
178 views
Python criteria based dynamic function adding to class
How to add functions to a class dynamically based on some criteria.
For ex i have a class as follwos:
class A(object):
def __init__(self,type):
self.type = type
Now based on the ...
1
vote
2answers
89 views
How can i incorporate a load / save function into my game written in python
How can I incorporate saving and loading to a file in my game written in python 2.7.
The source code is available https://github.com/bob53124/Charlies-Adventure/blob/master/game.py here to view. If ...
0
votes
1answer
776 views
Rendering dynamically generated HTML through pyramid Response
I am new to python's pyramid framework so kindly help me.
I have a HTML dynamically generated. This HTML is generated by a python script which dynamically writes (tags/tables) which are extracted ...
3
votes
1answer
2k views
Python 2.7 with pyuno
I am having python 2.7 installed on my windows 7. I have installed Libre Office 3.4 which comes with python 2.6. Hence i am not able to import uno and unohelper even after setting all environment ...
6
votes
1answer
1k views
Buffers and Memoryview Objects explained for the non-C programmer
Python 2.7 has introduced a new API for buffers and memoryview objects.
I read the documentation on them and I think I got the basic concept (accessing the internal data of an object in a raw form ...
14
votes
2answers
892 views
End of support for python 2.7?
Is there a known date/timeframe when python 2.7 will not be supported any more in favor of python 3?