Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.
0
votes
0answers
7 views
Does py-postgresql driver accept named parameters in prepared queries?
py-postgresql has a lot of great features, and makes using Postgres from python3 a breeze. A statements is prepared and executed like this (assuming an open conenction named "pg"):
select = ...
0
votes
2answers
1k views
Installing OpenCV for Python in Ubuntu 12.04. No module present in dist-packages or site-packages?
Following the steps given here, i have completed the installation process, however Python (IDLE) is giving me an ImportError. For which the guide suggests :
Python may return to you an error like "No ...
1
vote
1answer
45 views
python - Using argparse, pass an arbitrary string as an argument to be used in the script
How do I define an arbitrary string as an optional argument using argparse?
Example:
[user@host]$ ./script.py FOOBAR -a -b
Running "script.py"...
You set the option "-a"
You set the option "-b"
You ...
1
vote
5answers
102 views
how to enhance the features of builtin functions in python?
I am new to python programming,
i like to know how can i enhance the features of builtin functions(Monkeypatch)
for example
i know sum() built in function allowed only on number items
...
0
votes
0answers
18 views
issue with browse button tkinter and py3
I'm running OSX mountain lion and using python3. The following code doesn't allow me to ever select a file after i hit the browse button. It shows files as grayed out. Also, I'm not clear on another ...
0
votes
3answers
41 views
Is there a way to set a default parameter equal to another parameter value?
For example, I have a basic method that will return a list of permutations.
import itertools
def perms(elements,setLength=elements):
data=[]
for x in range(elements):
data.append(x+1)
...
13
votes
8answers
14k views
MySQL-db lib for Python 3.0?
So, looking for a mysql-db-lib that is compatible with py3k/py3.0/py3000, any ideas? google turned up nothing.
0
votes
3answers
397 views
MySQLdb on python3: No module named release
When i tried to connect to database using python code it shows the following error:
TTraceback (most recent call last):
File "C:\Users\Ponmani\Desktop\test.cgi", line 5, in <module>
...
6
votes
3answers
63 views
Function definition like range
Suppose I wanted to write a function similar to range
Recall that range has a one argument and 2/3 argument form:
class range(object)
| range(stop) -> range object
| range(start, stop[, ...
4
votes
1answer
3k views
Python socket.error: [Errno 13] Permission denied
Using Linux and Python, I want to send some data with broadcast:
d = b'109u433279423423423'
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.sendto(d, 0, ('192.168.0.255', ...
0
votes
1answer
13 views
Python - AttributeError: 'int' object has no attribute 'randint'
As part of a python course I am doing one of the tasks is to generate a random number between 1 and 10 100,000 times and count how many times each number occurs. Here is the code I have written for ...
0
votes
3answers
83 views
how to create a dictionary from a file?
I'm trying to write a Python code that will allow me to take in text, and read it line by line. In each line, the words just go into the dictionary as a key and the numbers should be the assigned ...
0
votes
2answers
29 views
Python 3 How to get string between two points using regex?
How to get the string between two points using regex or any other library in Python 3?
For eg:
Blah blah ABC the string to be retrieved XYZ Blah Blah
ABC and XYZ are variables which denote the start ...
-2
votes
1answer
126 views
What Unicode symbols are accepted in Python3 variable names?
I want to use a larger variety of Unicode symbols for variable names in my Python3 scripts. What characters are acceptable to use in Python3 variable names?
-1
votes
2answers
78 views
how to fix zero divide error in python? [closed]
import os
import re
import sys
sys.stdout=open('f1.txt','w')
from collections import Counter
from glob import glob
def removegarbage(text):
text=re.sub(r'\W+',' ',text)
text=text.lower()
...
0
votes
1answer
18 views
How to draw points and lines on widgets using PyQt
I'm making an application, which should draw several points on widget and connect some of them with lines. I've made a form using QT Designer and I want to draw the points on frame for example. I've ...
2
votes
2answers
85 views
Sending broadcast to all networks
I am currently writing a python program that needs to discover other instances of itself on LAN. It uses UDP broadcasts for discovery (255.255.255.255).
The problem is that if the computer has ...
3
votes
0answers
36 views
Using Python's multiprocessing module together with the cvxopt package
I just came across an issue with the cvxopt package for convex optimization, which I didn't find mentioned in the documentation. I wonder if anybody knows what causes it and how to best work around ...
-2
votes
1answer
52 views
naive bayes classifier in python [closed]
I have a text file topics.txt, which is of the form:
1~cocoa
2~
3~
4~
5~grain~wheat~corn~barley~oat~sorghum
...
0
votes
0answers
20 views
Python3 can't find scipy, numpy, ipython
I have CentOS6 and didn't see any "python3" listed by yum search python so downloaded the python3 .tgz and extracted it to /usr. I ran the install scripts and the interpreter works. Then I installed ...
0
votes
3answers
32 views
How to search and replace text in a file using Python?
How do i search and replace text in a file using Python 3?
Here is my code:
import os
import sys
import fileinput
print ("Text to search for:")
textToSearch = input( "> " )
print ("Text to ...
6
votes
3answers
2k views
Syntax-error on “install” when doing “pip install ” for Python
Been trying to install selenium Python for a while. Got the server jar and everything, but when I try to run the following command on the Python shell, I get a SyntaxError on the "install" command.
...
0
votes
1answer
244 views
Installing Python on Linux Mint
I have been trying to install python3.3.0 on Linux Mint. After reading the README file, I ran the following commands:
./configure
make
make test
sudo make install
I ran the make test command, but ...
1
vote
1answer
99 views
how to count words upto a limit in python?
I am writing a code, to count the frequency of word occurrences in a document containing about 20,000 files,i am able to get the overall frequency of a word in the document and
my code so far is:
...
2
votes
2answers
972 views
Python 3 is not working with Sublime Text 2
I have been using Sublime Text 2 for over a year and recently started using it for Python. Sublime has a built it build for Python which I tried using (the built in one is for 2.7.3 or something 2.X I ...
0
votes
5answers
43 views
Python: Using while loop only to return string without the leading zeros
The function is below. I'd like to use a while loop for this and no methods, as I want to get more practice using the while loop and if-statements.
def remove_leading_zeros(s):
'''(str) -> str
...
0
votes
3answers
723 views
How to initiate ssh connection with Python 3
Is there any easy way to initiate ssh connection with Python 3 without using popen? I would like to achieve password and password less authentication.
0
votes
0answers
35 views
Calculating an average in Python by comparing the change in each number [closed]
How do I calculate the average annual change in population with a list over a period of time in Python? I have a file that is being read as a list that has several yrs worth of population changes.
0
votes
0answers
22 views
Python Based NIDS
I am currently working on Network Intrusion Detection System Project.
I am trying to do it in a python languages as I am getting used to it.
I wanted to ask is there any library for developing a ...
1
vote
2answers
32 views
How do I change the default command for `run-python`?
I'm starting on a Python 3 project, so I'd like to configure Emacs' run-python command to use the python3 interpreter by default.
I don't want to
change python so that it points to python3 instead ...
0
votes
1answer
56 views
Python 3.x - Data Annotation Validation Equivalent
I am trying to identify a way to implement same concept as data annotation validation from .NET in Python. It would be something like the following:
class MyClass:
@Property
def ...
3
votes
1answer
880 views
Python 3.1 twitter post with installed library,
I'd like to be able to post twitter messages from python 3.0. None of the twitter API I have looked at support python 3.1. Since the post proceedure only requires this :
JSON: curl -u ...
1
vote
1answer
72 views
word frequency calculation in multiple files
I am writing a code, to count the frequency of word occurrences in a document containing about 20000 files,i am able to get the overall frequency of a word in the document and
my code so far is :
...
0
votes
5answers
33 views
Python: Return string using while loop (no methods or for loops)
So I have this function below where I want to return a new string where every ch is replaced with ch2:
def replace(s, ch, ch2):
'''(str, str, str) - > str
Return a new string where every instance ...
0
votes
1answer
27 views
find out if a python script is running in idle or terminal/command prompt
is there a way to find out of the python script is running in the idle or terminal?
work cross-platform if possible, if needed, different way for each platform.
work with python2 and python3 if ...
1
vote
1answer
34 views
How to prevent webpage from crashing BeautifulSoup?
On Python 3.2.3 running on Kubuntu Linux 12.10 with Requests 0.12.1 and BeautifulSoup 4.1.0, I am having some web pages break on parsing:
try:
response = ...
2
votes
2answers
35 views
Convert a text file into a list
This is what my text file consists of:
"I like ice cream very much"
So far this is my code:
f = open('nums.txt', 'r')
list = []
data1 = readline()
print (data1)
This is the output:
I like ice ...
1
vote
4answers
24 views
String checking Python
I have a string representing a filename, how can I check it against few conditions at once? I've tried
if r'.jpg' or r'.png' not in singlefile:
but kept getting false positives all the time.
0
votes
1answer
57 views
how to insert a newline before a number in a text file? [closed]
I have a text file, and I need to format it. This is a line from my text:
...
0
votes
2answers
48 views
What is wrong with my code? I am new at Python 3.3
def start():
import os
os.system("cls")
print "*A Wise man once said “Be the change that you wish to see in the world.” This is the idea you have decided to live by and strive for in your ...
0
votes
1answer
20 views
s = requests.Session() How do I get the cookie value for the session within my script?
I tried:
login_data_2['_sn'] = s.__attrs__[1]
but this didn't work. pydoc has the following:
__attrs__ = ['headers', 'cookies', 'auth', 'timeout', 'proxies', 'hook..
1
vote
2answers
38 views
Remove command from a button
b1=Button(bla bla bla,command=run_something)
b1.configure (command='')
I want to remove the 'command' from a button so that if pressed nothing happens
how would I do this?
note:
I did not ...
4
votes
4answers
1k views
Understanding Python's iterator, iterable, and iteration protocols — what exactly are they?
What are the most basic definitions of "iterable", "iterator" and "iteration" in Python?
I've read multiple definitions but their exact meaning still won't sink in.
Can someone please help me with ...
2
votes
1answer
66 views
How do you know if a new list was created or just modifed?
I'm confused about this.
Say I have a function that is called everythird, and that takes a list as a parameter, and returns the every third element.
def everythird(l):
return l[0::3]
And if I ...
1
vote
3answers
45 views
While loop statement- differing answers
So given this function as an example.
def spaced_word(s):
i= 0
t = s[i] + ' '
while i < len(s) - 2:
t = t + s[i + 1] + ' '
i = i + 1
t= t + s[len(s) - 1]
...
0
votes
0answers
18 views
How do you make a DFT in Python?
I was attempting to test a DFT program by imputing a list of generated numbers which I created by summing 20 sine waves with the respective frequencies of 8, 13, 13, 14, 18, 23, 25, 32, 33, 38, 41, ...
1
vote
1answer
69 views
Python: How to return a list without modifying the original list using a while loop only?
Say I have a function called everythird that takes a list as its parameter and returns a new list containing every third element of the original list, starting from index 0.
I know how to do this ...
3
votes
2answers
748 views
Importing pandas shows ImportError: cannot import name hashtable
I have installed pandas on python 3.3, and coded like this:
import csv
import pandas
from pandas import DataFrame
csvdata = pandas.read_csv('datafile.csv')
df = DataFrame(csvdata)
It comes with ...
0
votes
1answer
67 views
How to make buttons call functions
After defining my word count method thanks to another member, I am now creating a GUI to go along with it. I have created three buttons, one for browsing for a file, one for counting the words and ...
0
votes
0answers
17 views
UnboundLocalError after 67th successful function call in single script
I'm extracting large amounts of data from excel sheets, to be written to another excel file. Script looks something like this:
def foo(file):
open file
write specific cells to new workbook in ...







