Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.

learn more… | top users | synonyms (4)

0
votes
1answer
43 views

how to find frequency of the keys in a dictionary across multiple text files?

I am supposed to count the frequency of all the key values of dictionary "d" across all the files in the document "individual-articles' Here,the document "individual-articles' has around 20000 txt ...
0
votes
0answers
6 views

Error while parsing logs with spilp

I'm trying to parse some logs with spilp and I get the following error at end=" ": File "spilp.py", line 346 print("\n\nENTERING FOLDER: ", end=" ") I have installed python 3.2 in Ubuntu 12.04, ...
0
votes
3answers
19 views

repeated signal and slot for same widets in pyqt4

I have 10 lineedit widget that design by qt-designer and i define signal&slot in my code, my problem is with repeating same signal&slot 10times in my code, something like this: ...
0
votes
0answers
9 views

Toggle Fullscreen (overrideredirect and geometry)

I'm using Tkinter with Python 3.2.3 on my Raspberry Pi, and I'm trying to make a checkbutton that toggles whether the window is in fullscreen or not. I'm running into two problems: First, when I use ...
0
votes
0answers
7 views

Using python's C-Types to call CreateProcessMemory and LoadLibraryW to perform DLL injection

I'm using Python 3.2 C-types to try and perform DLL injection. I'm thinking my error is in the WriteProcessMemory call because the path the dll is incomplete. Below is my code... PAGE_READWRITE ...
1
vote
0answers
19 views

Convert bytes array to string python

I'm trying to do the crypto course assignment from coursera and I'm having problems with python 3 semantics. MSGS = b"315c4eeaa8...".split() TARGET = b"32510ba9bab..." guess = binascii.hexlify(b"The ...
1
vote
0answers
33 views

Python 'multitasking' need

I'm programming a audio program that reads a serial information sent by an arduino and play some songs if the serial information is "ok", and stop playing if is "not ok". The problem is that I'm using ...
1
vote
1answer
46 views

TypeError: object of type 'bool' has no len() in sys.argv length check

What is the reason for the error TypeError: object of type 'bool' has no len() Should i import something in my python program? I am using len(sys.argv) in if condition to check for the number ...
-1
votes
2answers
49 views

How do you end a python guess number game? [closed]

i created a loop guess number game with help from @J DawG, but i couldn't figure out how to make it terminate if the user tells it to. Here's my code: import random inplay = 0 x = "" def in_play(): ...
-3
votes
1answer
73 views

how to exit a python script in an if statement [closed]

I'm using Python 3.2 and trying to exit it after the user inputs that they don't want to continue, is there code that will exit it in an if statement inside a while loop? I've already tried using ...
2
votes
5answers
53 views

How to Swap First and Last Characters from Input in Python

I am brand new to programming, learning Python3 from an online course. This exercise asks me to write a program which reads a string using input(), and outputs the same string but with the first and ...
-2
votes
2answers
50 views

reload/reimport a file/class that is imported using from * import *

well, as the title say, i got a group of import, all import a class, all in the same folder as the script running it: from lvl import lvl from get import get from image import image from video import ...
0
votes
0answers
13 views

setuptools0.7.2 installation for python2.7.5

I am trying to build and install setuptools for my python 2.7.5 version, so can I use the setuptools0.7.2 version. How is it different from installing setuptools0.6cxx for python 2.7 version ...
0
votes
2answers
66 views

how to find word frequency without duplicates across multiple files? [duplicate]

I am trying to find the frequency of words in multiple files in a folder, i need to increment a word's count by 1 if it is found in a file. For ex:the line "all's well that ends well" if read in file ...
0
votes
4answers
38 views

What is the proper way to work with shared modules in Python development?

I'm working toward adopting Python as part of my team's development tool suite. With the other languages/tools we use, we develop many reusable functions and classes that are specific to the work we ...
0
votes
2answers
33 views

Python/Batch: Use Python to press any key to continue

I am using a python script to automate a process involving batch files. These are batch files that are used for other applications and I am not allowed to edit them. At the end of the batch file, it ...
-3
votes
0answers
13 views

when i am trying to run python + hadoop wordcount. I am getting this error. please suggest

13/06/18 19:14:00 INFO streaming.StreamJob: map 0% reduce 0% 13/06/18 19:15:57 INFO streaming.StreamJob: map 100% reduce 100% 13/06/18 19:15:57 INFO streaming.StreamJob: To kill this job, run:## ...
0
votes
0answers
34 views

Web crawler in Python 3 [closed]

Are there any good web crawlers that support Python 3? Scrapy is really great, but it runs only with Python 2.6 and 2.7 (faq). Thanks.
0
votes
2answers
41 views

Compare two multiple-column csv files

[Using Python3] I want to compare the content of two csv files and let the script print if the contents are the same. In other words, it should let me know if all lines are matched and, if not, the ...
0
votes
1answer
40 views

Local scope, beyond the scope of the enclosing

Why lambda function to get the list of values ​​i = 4 .During the call lambda, enclosing scope does not exist. The function f has finished work and returned control (the variable i does not exist). ...
0
votes
1answer
10 views

How to call 2to3 before run py2app

I have a setup.py that use py2app, and I want to run 2to3 to convert python script to Python 3 compatible before build the app. I used option setup(use_2to3=True), but it did not call 2to3. So now I ...
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 = ...
-3
votes
1answer
53 views

Processing files listed from a dictionary [closed]

I have a text document topics.txt: 1~cocoa 2~ 3~ 4~ 5~grain~wheat~corn~barley~oat~sorghum 6~veg-oil~linseed~lin-oil~soy-oil~sun-oil~soybean~oilseed~corn~sunseed~grain~sorghum~wheat 7~ 8~ 9~earn ...
2
votes
1answer
35 views

How can I detect special word occurs in teraterm log in run time using Python

I use teraterm as my client-console and save the console log somewhere. When I open the teraterm and do something on my COM1 serial port (attached with a device), it will print messages on the screen ...
0
votes
3answers
41 views

How do you restart a python guess a number game?

I'm a newbie at python, so i couldn't figure out how to make this code repeat at the beginning again. Here is my code: import random guessesTaken = 0 print('Hello! What is your name?') myName = ...
1
vote
1answer
43 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 ...
0
votes
1answer
38 views

Python Ctypes doesn't compact structure when field and structure fits

not sure if it's normal that Python 3.3.2 alwasy pack structure into a new structure unit. code below demonstrates the problem. sts structure only occupies 8-bit. pkt only has 24-bit fields before ...
0
votes
3answers
39 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) ...
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[, ...
0
votes
0answers
15 views

How to use Python 3 to login to a webpage and print it's source code?

I wanted to print the source code of a site However it seems it wouldn't work without logging into the site. I have a username and a password. I just dont know how to use them and login in through ...
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
80 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
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
2answers
28 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 ...
-1
votes
2answers
77 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() ...
2
votes
2answers
73 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 ...
0
votes
0answers
19 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 ...
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
1answer
98 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: ...
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
5answers
39 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 ...
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 ...
1
vote
1answer
70 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 : ...
-2
votes
1answer
51 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
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
0answers
21 views

Can't compile cx_Freeze on a Python built from source

Here's my situation. I'm trying to package a game for Linux (on Ubuntu 13.04) written in Python 3.3 via cx_Freeze. Fine. I installed it via sudo apt-get install cx-freeze. Even though it ...
1
vote
1answer
32 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 = ...
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.

1 2 3 4 5 122