0
votes
2answers
41 views

Incorporating multiple lists in one text file

I am new to coding and I ran in trouble while trying to make my own fastq masker. The first module is supposed to trim the line with the + away, modify the sequence header (begins with >) to the line ...
0
votes
0answers
80 views

Reading values of one dictionary into another in python

So basically, i have a dictionary d, that reads from a text file "topics.txt" "topics.txt", has lines in the following pattern: 1~britain~italy~india 2~spain~turkey 3~france ...
1
vote
1answer
10 views

How to place QWebView in QTabWidget?

I'm new in Python and pyQt. I'm making desktop application for some forum. My app work correct, but I'm don't know, how I can to place my QWebView element in tab "QTabWidget" Here is my full code: # ...
1
vote
0answers
32 views

nice decimal.Decimal autonormalization

This gonna be my first question here. I am trying to make a decimal.Decimal child class which mainly differs the parent by making autonormalization on itself and on the results of its callable ...
-4
votes
1answer
24 views

Does not python contain library to convert latitude and longitude in DMS format into decimal format and vice versa? [closed]

Does not python contain any library to convert latitude and longitude in DMS format into decimal format and vice versa?
0
votes
1answer
30 views

Python, struct.pack_into: How to change the padding bytes from 00 to FF?

I'm writing a Python 3.3.2 script. Here is a snippet from my code: ... text = filename.readlines() self.metadata = bytearray(256) ... struct.pack_into('32s', self.metadata, 4, text[0]) ... Exactly ...
0
votes
1answer
33 views

NameError: global name 'xrange' is not defined

I am trying to get Christian Careaga's game (Necromonster) to work on my computer, but seem to be missing something. I have installed the Pygame library, but get this error: Traceback (most recent ...
1
vote
1answer
25 views

Python: appending/merging multiple csv files respecting headers and write to csv

[Using Python3] I'm very new to (Python) programming but nonetheless am writing a script that scans a folder for certain csv files, then I want to read them all and append them and write them into ...
-4
votes
2answers
68 views

Shorten Python code [closed]

I have a feeling this Python code could be shortened greatly, but I almost always tend to fall back to writing C-style layout. What is the best way to shorten it, in your opinion? Readability is a ...
0
votes
4answers
49 views

Python3 list printing without spaces

i hvae this code here. i want to print a list without spaces. here l is a list with 3 elements that i trying to print: >>> l=[] >>> l.append(5) >>> l.append(6) >>> ...
3
votes
1answer
46 views

Subprocess.Popen: cloning stdout and stderr both to terminal and variables

Is it possible to modify code below to have printout from 'stdout 'and 'stderr': printed on the terminal (in real time), and finally stored in outs and errs variables? The code: ...
0
votes
1answer
76 views

how to iterate over all keys in dictionary python?

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
1answer
50 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
3answers
20 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: ...
1
vote
0answers
40 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
50 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
53 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
79 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
56 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
51 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 ...
-1
votes
2answers
70 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
43 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
39 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 ...
0
votes
0answers
38 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
46 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
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 = ...
-4
votes
1answer
56 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 ...
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 ...
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) ...
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
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
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 ...
-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() ...
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 ...
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
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: ...
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
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 : ...
-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 ...
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 = ...
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 ...
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..
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: ...
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 ...
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] ...
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 2 3 4 5 90