1
vote
2answers
45 views

How can I deformat string with prices in python?

I got db where one of the field in record in table contain prices in form of string. String itself is not a big deal - but price is totally unformatted: $12,000.50 $3.50 From $3.50 to $12,000.50 ...
1
vote
1answer
25 views

string.format, differing length breaks table

I am trying to format a list of lists into a table. It mostly works but if an element is too long it seems to break the table. Any idea why this is happening or what to do to ensure a well formatted ...
-4
votes
0answers
40 views

Revising python code to pass variable to xml document

How can I re-write this so that my list imports successfully into a xml file. companyInfo has a matching variable in the xml template (which is a word document) which gets replaced during running of ...
1
vote
1answer
53 views

Python CSV Module - Can't hold text format

EDIT* Solution was to wrap text in the column. This will restore the original format. I am trying to create a CSV using the CSV module provided in Python. My issue is when the CSV is created the ...
1
vote
3answers
88 views

Python: split on either a space or a hyphen?

In Python, how do I split on either a space or a hyphen? Input: You think we did this un-thinkingly? Desired output: ["You", "think", "we", "did", "this", "un", "thinkingly"] I can get as far ...
2
votes
3answers
53 views

python convert to binary and keep leading zeros

I'm trying to convert an int to binary using the bin() function in python. However, it always removes the leading zeros, which I actually need, such that the result is always 8-bit: Example: bin(1) ...
0
votes
0answers
27 views

Flask Display Json in a Neat Way

I'm creating an API from a mongodb database using Flask and have the following code: app.route('/<major>/') def major_res(major): course_list = list(client.db.course_col.find( {"major" : ...
1
vote
2answers
49 views

Python: Concatenating and formatting strings/floats while writing to a csv

I have a variable compareout that stores nested lists of data: compareout = [... [Guyana,951.723423,1037.123424,28.476757,2.991234], [Bolivia,936.123420,1065.8234236,43.25123,4.62], ...
3
votes
2answers
40 views

set ipython's default scientific notation threshold

How can I modify the point at which python decides to print in scientific notation? E.g. I'd like everything > 1e4 or < 1e-4 to be printed in scientific notation. Good: In [11]: 5e20 Out[11]: ...
0
votes
3answers
34 views

How to match parentheses and comma formatting in list, python

I am trying to combine entries from two columns in a spreadsheet into a single list in python. The first column contains the first person in every pair and is the person who asked the question, the ...
0
votes
1answer
23 views

In a python logging is there a formatter to truncate the string?

Python logging formats strings with a syntax I don't see elsewhere in python, like 'format': '%(name)s' Is there any way to truncate an error message using the formatter, or do I need to override ...
1
vote
1answer
30 views

How to format raw string with different expressions inside?

Let's say, we want to catch something with regex, using rawstring to define the pattern, which pattern has repeating elements, and variables inside. And we also want to use the format() string ...
0
votes
1answer
23 views

multiple booleans against a string

I am trying to run a check again multiple words in a user-input string : prompt = input("What would you like to know?") if ('temperature' and 'outside') in prompt: I initially was trying to check ...
1
vote
1answer
51 views

how to line up text in list box python

i have three lists populating a list box. what i would like to know is there a way to format the phrases so that the names are all in line then the dates and then the info. i have tried to use + to ...
1
vote
2answers
33 views

Limit string width by breaking into multiple lines with Python

I am using python to generate a test file used for programming. In this file, I have several auto-generated comments. Problem is, some of these comments can be quite long, and the software which ...
2
votes
1answer
122 views

Pandas: Setting no. of max rows

I have a problem viewing the following DataFrame n = 100 foo = DataFrame(index=range(n)) foo['floats'] = np.random.randn(n) foo the problem is that it does not print all rows per default in ...
1
vote
1answer
36 views

How to smoothly align text output

Is there anyway to do this in python? I have a bunch of misaligned text that essntially looks like this (copied from above linked question) : column1 column2 ------- ...
1
vote
2answers
41 views

Parse text to replace quotes and nested quotes

Using python, I would like "educate" quotes of a a plain text input and turn them into the Context syntax. Here is a (recursive) example: original text: Using python, I would like "educate" quotes ...
1
vote
1answer
57 views

How do I format floating points within a class in python?

I want to format numbers that are put into this as float, fixed point numbers to two or three decimal places. However my code does not work class Quake: """Earthquake in terms of latitude, ...
2
votes
1answer
65 views

Conditional Formatting xlwt

I have seen some posts that say you can NOT perform conditional formatting using xlwt, but they were rather old. I was curious if this has evolved? I have been searching for about half a day now. ...
3
votes
1answer
68 views

Tkinter Window Formatting (Python)

Im making a simple Tkinter calculator but i cant seem to properly line up the input forms and the buttons. here is my current code from Tkinter import * def calculate(): try: num1 = ...
1
vote
1answer
46 views

Formatting Text in a Table in Python

I'm having issues creating a table that is dynamic to adjust to various results. I've written a screen scraper to pull stocks from http://finance.yahoo.com and print the company name, it's symbol, ...
0
votes
1answer
45 views

Python - proper syntax of .format()

I need to write a .format() like this: "{% display_cookies_accepted {} %}".format(self.client.cookies) {} - need to be replaced by self.client.cookies {%, %} - is a template tag in django syntax. ...
0
votes
2answers
45 views

How do i format the ouput of a list of list into a textfile properly?

I am really new to python and now I am struggeling with some problems while working on a student project. Basically I try to read data from a text file which is formatted in columns. I store the data ...
1
vote
2answers
97 views

Django template format string

i have a form that has some field: class ProfileEditForm(forms.Form): nickname = forms.CharField(max_length=30, label=_('Your nickname'), required=False) then in template i want to put users ...
2
votes
2answers
76 views

Is this an acceptable way to use str.format()?

I've recently decided to start using .format() instead of % (see this question). Instead of the {0}, {1} syntax, I'm wondering if the following is an acceptable use: import os def ...
1
vote
1answer
99 views

Howto autoformat Python code max characters per line with Pydev

I'm using Pydev for Python programming in Eclipse. I would like to know if there is a way for auto-formatting the code so that a maximum number of characters per line is respected. Thanks
0
votes
0answers
34 views

Parsing scanned tests into database

I have a lot of ABCD multiple choice tests I've compiled that I want to compile into a single question database, and I also have OCR software to get the text from each test. However, I need to ...
0
votes
2answers
45 views

display a list in a different format

I'm trying to display a list in a different format. so for example. function(list): The user inputs a list of numbers like [0,1,2] and instead of returning "[0,1,2]" it returns "0 1 2" with no ...
-1
votes
3answers
72 views

Variable expansion in Python regex

I am trying to write a script in Python which "cleans" a number of file-fed text like this: for i in range(1,10): number = 1 cleanText = re.sub('number.','',line).strip() number = number ...
1
vote
2answers
62 views

Trouble removing newline characters

I have been trying to rewrite a text file with python, where I go into a file, grab each line, append an additional string onto the line, then rewrite the newly appended line to the text file. The ...
1
vote
3answers
69 views

Python properties and string formatting

I was under the impression python string formatting using .format() would correctly use properties, instead I get the default behaviour of an object being string-formatted: >>> def get(): ...
2
votes
1answer
87 views

how to add thousands separator to a number that has been converted to a string in python?

in my scenario (python 2.7), i have: str(var) where var is a variable that sometimes requires thousands separators eg 1,500 but as you can see has been converted to a string (for concatenation ...
0
votes
2answers
90 views

Python code error [closed]

I have two problems with the following code. One, the first raw_input if i try to format it the same way as the raw_input life for 'run again', i'll get a syntax error and i don't get why. second, ...
1
vote
2answers
60 views

Center str in python 2.7 [duplicate]

i'm trying to center the text of a string but i can't do it. I checked mutiple posts and tried what they said, i don't get an error but the text is still aligned to the left. here the code and the ...
2
votes
2answers
87 views

New style formatting with tuple as argument

Why can't I use tuple as argument to formatter in new style ("string".format())? It works fine in old style ("string" %)? This code works: >>> tuple = (500000, 500, 5) ... print "First ...
1
vote
4answers
72 views

How to format a dict of lists as a table

I have a dict containing lists of strings and was wanting to print everything out as a table in the terminal in a format something like: +----------------------------------------------+ | key1 | ...
1
vote
2answers
134 views

Formatting a Python Dictionary for JSON

Which of the following two examples is considered a better format for JSON - in terms of convention, standards and/or saving memory (or for any other reason)? Thank you in advance. Example 1: ...
0
votes
3answers
79 views

remove specific line returns (“\n”) from file

I have a file and some lines have a \n in the wrong spot. I am able to find them correctly, but when I try to output my findings to a new file, they still show the \n even though if I print the ...
0
votes
1answer
97 views

Reformatting a stopwatch .csv in Python

I know that there must be a few ways of doing this, but I'd love to get your opinion on which would be the best way to do so. I have a .csv, outputted from a phone's stopwatch application that looks ...
0
votes
2answers
47 views

Formatting a string to microseconds

Looking to format a output to show a very small number.. a= 6500 b= 3600 c=.000900 d= int((b/a)-c) print d Answer comes out to be zero, but looking for the .###### numbers after the . sorry try ...
-1
votes
1answer
65 views

Python convert decimal number in a string without “.” [closed]

I have a tuple of two numbers, for example: data = (0.25, 0.25) I wish to convert this to a string like this: 025and025 without the ".".
-1
votes
1answer
92 views

How to format a text file using Python or any other programming/scripting language? [closed]

I would like to know how to format a text file using Python or any other programming/scripting language? current format in text file is like this: ABALONE Ab`a*lo"ne, n. (Zoöl.) Defn: A univalve ...
0
votes
0answers
142 views

ValueError: unsupported format character ''' (0x27) at index 383

I have a problem with String Formatting in SQL query using Python. Here is the code: laikas = datetime.datetime(2012, 9, d, h, m, 00) cur.execute("SELECT (player.player_name) as str_player_name … ...
0
votes
2answers
115 views

How to concatenate and compress string variable at the same time in python ?

Say I have this variables below ( id , a,b,c,d ) id a b c d x 2 4 5 7 y 4 5 9 z 1 2 I want to create a new concatenate variable named 'total' from these strings , so I used this code ...
8
votes
5answers
152 views

Use an expression twice in one line - as a condition AND for string formatting?

I find that in lots of different projects I'm writing a lot of code where I need to evaluate a (moderately complex, possibly costly-to-evaluate) expression and then do something with it (e.g. use it ...
8
votes
4answers
199 views

German number separators using format language on OSX?

Update: The answers show so far that it seems to be a platform-related bug on OSX that has to do with the specific locale settings as they don't fully support grouping numbers. Update 2: I have just ...
1
vote
4answers
221 views

python 3.2.3 ignore escape sequence in string

I'm new to Python and I'm using one of the examples I found here to read lines from a file and print them. What I don't understand is why the interpreter ignores \n escape sequence: Text file: ...
1
vote
1answer
74 views

Preferred way to format a dictionary being passed to a function?

How would I format: self.bot = servo.Robot({ 'waist': servo.Servo(3, 90, .02, 0), 'shoulder': servo.Servo(4, 130, .03, 15), 'elbow': servo.Servo(5, 110, .02, 19), ...
0
votes
1answer
80 views

python INT / date formatting

I am trying to use datetime module. I need the month to come back as a INT with the ZERO in front. in the form as 01 for JAN, 02 for FEB etc etc. I can get 1 by using, today = date.today() m = ...

1 2 3 4 5 6