0
votes
3answers
36 views

Python: Variance of a list of defined numbers

I am trying to make a function that prints the variance of a list of defined numbers: grades = [100, 100, 90, 40, 80, 100, 85, 70, 90, 65, 90, 85, 50.5] So far, I have tried proceeding on making ...
0
votes
2answers
31 views

How to match numbers using regex in python in list

I have subtitles in srt format I have function def clearSubtitles(subtitles): for i in subtitles: if re.search("^\r$", i) != None : subtitles.remove(i) ...
0
votes
3answers
25 views

Little NumPad in tkinter

I'm trying to build a little num pad using tkinter, to be able to enter a password code on a pure touchsystem. This is what I have so far: import tkinter from tkinter import ttk def main(): root ...
0
votes
2answers
51 views

prime factor python nightmare

Been trying to get python to return the highest prime factor of a number and, 11 days of banging my obviously dumb head later I's ready to ask for help. Any idea why this won't return the highest ...
0
votes
4answers
96 views

Python Regex Search string for all substrings having one or more numbers

In python, I have the following string: "fish 14~ reel 14 rod B14" I want to use REGEX to run through a for loop and return the location of each substring having one or more numbers in it. Ex.: ...
-5
votes
1answer
33 views

Number moving in place [closed]

I would like to make numbers change in place, for example i don't want something like this: 1 2 3 4 5 i want just to start at 1 and go to 9 without moving. Thanks!
1
vote
8answers
112 views

How to find the cumulative sum of numbers in a list?

list=[4,6,12] I want to sum up the numbers like [4+0, 4+6, 4+6+12] in order to get the list t=[4,10,22]. I tried: x=0 for i in (time_interval): t1=time_interval[0] t2=time_interval[1]+t1 ...
0
votes
1answer
147 views

how do I write tests correctly using unittest?

I am trying to figure out how to write unit tests for functions that I have written in python - here's the code written below: def num_buses(n): import math """ (int) -> int ...
-1
votes
3answers
62 views

Iterable Floats?

I am trying to make a game where the player is deducted .5 from a value in a ini file every time he plays. However I keep getting an error and I am not sure what to do. This is my code. Dont worry ...
-1
votes
2answers
103 views

Convert float number to string with engineering notation (with SI prefixe) in Python [closed]

I have a float number such as x=23392342.1 I would like to convert it to a string with engineering notation (with metric prefix) http://en.wikipedia.org/wiki/Engineering_notation ...
1
vote
2answers
47 views

String to Number List Function Not Working

I am very new to Python programming and have been following a few video and website tutorials. I am working on a few programming practice problems and am having trouble debugging. Here is my first ...
0
votes
3answers
89 views

Python: Convert numbers to words

Hello everyone I'm trying to produce a code that will convert a number to a word in a given dictionary. But it seems to not print anything at all. no errors or anything. I tried many things to find ...
0
votes
1answer
55 views

Assigning Numbers To Words In A Paragraph In Python [closed]

I am working on a project where me and my 'instructor' have the same book, same volume, and same version. Given a page already (aka, we're both using the first main page), find the phrase given a set ...
3
votes
1answer
41 views

Convert to different positional notation in Python 3

I'm trying to write a function that allows me to convert a number from a certain positional notation to another one of choice, from binary all the way to *hexa*trigesimal base numbers. In order to do ...
0
votes
4answers
73 views

Need help removing duplicates numbers in Python exercise

I'm supposed to write a program that eliminates duplicate values and returns unique numbers. I must use a def eliminate(alist) and a def main(). The numbers must be entered from standard input and ...
1
vote
3answers
37 views

Python 3.0+ setting to max 4 decimal and rounding

So I have an assignment to match an expected output: 34.7381. But I am getting 34.73809999999999. I realize that it is just a rounded number with only 4 decimal places but I have no clue how to that ...
0
votes
0answers
43 views

python 2.7 loading files

This is for school work. This program encrypts the users data using different types of encryption and I'm trying to allow the user to load up their own file with text and the encrypt the text. I've ...
-2
votes
2answers
191 views

Python: List all prime numbers that exist before an input number [duplicate]

n= int(raw_input("Number? ")) for x in range (2, n+1): for y in range (2, x+1): if x < n+1 and x % 2.0 > 0 and x % 3.0 > 0 and x%y > 0: print x x = x + 1 ...
-6
votes
1answer
149 views

Generating all unique ways of writing x = abc?

I have a number, x, and I wish to find all unique ways to write a*b*c. By unique I mean 2*3*5 is the same as 3*2*5 or 5*3*2. I've got a working algorithm that takes the prime factorization of x and ...
1
vote
5answers
62 views

How to rearrange numbers from different lines of a text file in python?

So I have a text file consisting of one column, each column consist two numbers 190..255 337..2799 2801..3733 3734..5020 5234..5530 5683..6459 8238..9191 9306..9893 I would like to discard the very ...
1
vote
1answer
89 views

Boost Python Magic Number

I am trying to wrap some c++ functions for use in python. For example here is the function from the boost python tutorial. // Copyright Joel de Guzman 2002-2004. Distributed under the Boost // ...
-4
votes
1answer
33 views

Checking for certain numbers in a number - Python [closed]

If you have the numbers 1 3 5 7 9 to work with, and you have to show every number that is made up of those numbers, and is also not divisible by 11, how would you do it? I was thinking of using a ...
0
votes
2answers
115 views

Even number check without: if

Is there way to check an for even numbers in a list without using : if? Here what I have when I use if: import numbers numbers = [ 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15, ...
0
votes
2answers
64 views

Python - Sorting lists of numbers

Just learning Python and got on to the subject of sorting lists. Two types of algorithms were shown: insertion and selection. So, I had an idea and created this: def DiffSort(lst): lstDiff = ...
0
votes
4answers
94 views

How to prevent Python from removing the leading zeroes in “0005” [duplicate]

I want to create a list of numbers from 00000 to 99999, and I want to save it in a file. But the problem is that Python removes the leading zeroes, making 00000 just 0. Here's my code. ...
-1
votes
2answers
142 views

Python integer partitioning [closed]

I am trying to write a piece of code that will give me the partitions of a number.So far I came up with this(found on google). def gen(n): # tuple version if n == 0: ...
3
votes
1answer
94 views

How can I verify if a string is a valid float? [duplicate]

What I want to do is to verify if a string is numeric -- a float -- but I haven't found a string property to do this. Maybe there isn't one. I have a problem with this code: N = raw_input("Ingresa ...
0
votes
1answer
192 views

Random Number File Writer

Instructions: Write a program that writes a series of random numbers to a file. Each random number should be in the range of 1 through 100. The application should let the user specify how many ...
3
votes
3answers
140 views

Grouping / clustering numbers in Python

I've googled, I've tested, and this has me at my wits end. I have a list of numbers I need to group by similarity. For instance, in a list of [1, 6, 9, 100, 102, 105, 109, 134, 139], 1 6 9 would be ...
0
votes
2answers
94 views

float is OK, int gives wrong output python 2.7 [duplicate]

Possible Duplicate: Why doesn’t this division work in python? real quick: I have this and works fine def roi(stake, profit): your_roi = profit / stake * 100 return your_roi def ...
-4
votes
2answers
91 views

How to separate numbers into digits and store them in a list?

I'm working on a school project in which we need to create a solution for 8-puzzle problems using the a* algorithm. Anyways, I would like to ask a user for an input say: 123 456 7 8 How do I ...
8
votes
4answers
222 views

Python - Check if the last characters in a string are numbers

Basically I want to know how I would do this. Here's an example string: string = "hello123" I would like to know how I would check if the string ends in a number, then print the number the string ...
0
votes
5answers
91 views

A number out of digits [closed]

I want to know what is the biggest number you can make from multiplying digits entered by the user like this: 5*6*7*2 OR 567*2 OR 67*25 ...etc so 5/6/7/2 should be entered by the user as variables, ...
-2
votes
1answer
79 views

English number spelling [closed]

I'm solving exercise 17 from Euler's project, which is about number spelling (GB). I searched the web for number spelling rules, but didn't find anything suitable. Does anyone have a link to english ...
3
votes
2answers
132 views

Python conditionally round up numbers

Today I have a question for you about rounding up numbers using conditions in Python. I am doing a sales website and my client wants to round up the prices depending of the result converting them ...
3
votes
4answers
207 views

How would you implement a divisor function?

The divisor function is the sum of divisors of a natural number. Making a little research I found this to be a very good method if you want to find the divisor function of a given natural number N, ...
3
votes
4answers
171 views

Get size of integer in Python

How can I find out the number of Bytes a certain number takes up to store e.g. for \x00 - \xFF I'm looking to get 1 (Byte), \x100 - \xffff would give me 2 (Bytes) and so on... any clue? Thank you Ron ...
2
votes
2answers
46 views

How to implement negative infinity in python?

I am trying to implement a Heap defined Priority Queue, the algorithm is from CLRS book chapter 6. The pseudocode is listed below: Max_Heap_Insert(A, key): A.heap_size = A.heap_size + 1 ...
4
votes
8answers
353 views

How to randomly generate decreasing numbers in Python?

I'm wondering if there's a way to generate decreasing numbers within a certain range? I want to program to keep outputting until it reaches 0, and the highest number in the range must be positive. ...
1
vote
2answers
137 views

number/numbers to list by using input()

Maybe this is a very basic question but i am a beginner in python and couldnt find any solution. i was writing a python script and got stuck because i cant use python lists effective. i want user to ...
0
votes
1answer
167 views

Adding Prime numbers and Fibonacci numbers [duplicate]

Possible Duplicate: Find out 20th, 30th, nth prime number. (I’m getting 20th but not 30th?) [Python] Fastest way to list all primes below N in python prime numbers : P=[2, 3, 5, 7, 11, ...
0
votes
1answer
88 views

xlrd error when reading number

I wrote a small script to read from multiple excel files and write the data into a xml-file. I stripped the script a bit to explain what goes wrong. It looks like this: import glob, xlrd xmlFile = ...
-1
votes
4answers
74 views

Python - Returning max number in an array. Errors

I have a Python script that connects to a website via FTP and lists the current version numbers of programs located on the website. I created an array to hold the version numbers till the script would ...
0
votes
2answers
79 views

Simple Python headache with number comparison

To keep a clean question, the problem is commented inside the code :) theOpenFile = open('text.txt', 'r') highest = 0 for myCurrentString in theOpenFile.readlines(): ...
0
votes
3answers
430 views

Python variable increment while-loop

I'm trying to make the variable number increase if user guessed the right number! And continue increase the increased one if it is guessed by another user. But it's seem my syntax is wrong. So i ...
1
vote
1answer
150 views

Placing odd numbers in consecutive elements of list: Python 3.2

I'm in an introductory Python course. I'm taking a practice final and I don't know exactly what to do for a question. It asks: Complete the following method that places odd numbers found in the ...
1
vote
5answers
150 views

Trying to make a simple prime number checker, won't let me use square root. Python 3.2

I have a function to check if a number is a square root: def primeness(n): for x in range(2, (n**0.5) + 1): if n % x == 0: return False return True def main(): n = ...
1
vote
3answers
63 views

new to lists on python

This is my current code: while True: try: mylist = [0] * 7 for x in range(7): sales = float(input("Sales for day:")) mylist[x] ...
0
votes
3answers
102 views

Sort a list numerically in Python

So I have this list, we'll call it listA. I'm trying to get the [3] item in each list e.g. ['5.01','5.88','2.10','9.45','17.58','2.76'] in sorted order. So the end result would start the entire list ...
1
vote
1answer
85 views

Comparing two lists and getting the difference in numbers

I'm trying to understand what the most efficient way to take two lists e.g. [u'25.78', u'13.39', u'11.93', u'14.97', u'14.34', u'21.08', u'13.24', u'13.11', u'', u'19.45', u'17.56', u'20.57', ...

1 2 3 4