0
votes
2answers
22 views

Datetime in Python, just printing out the time and formatting

In my program I have: from datetime import datetime And in my program I have: def get_time(): time = str(datetime.now()) print("") print(time) print("") return None but it ...
1
vote
1answer
27 views

Formatting a 2d list, read in from file

Using python 2.7, I can read multiple csv's in from list of file names with this... empty = [] for i in items: with open(i) as file: reader = csv.reader(file, dialect='excel') for ...
0
votes
3answers
53 views

Can't load a JSON file into python

I asked in another question for the type of this object, it is a text file coming from a URL. variable = [["1","arbitrary string","another arbitrary string"], ["2","arbitrary string","another ...
1
vote
2answers
81 views

What kind of object is this?

I'm trying to load this object in python or PHP, but I'm now trying to know if there are libraries that are already written so that I don't parse the document myself. variable = [["1","arbitrary ...
0
votes
1answer
30 views

Display HTTP Response Message in HTML using CGI (Python)

I have created a local server which sends a HTTP POST message to http://httpbin.org/post and then prints the return message on the screen. The python CGI code that runs at the back end prints the ...
0
votes
1answer
24 views

How to center align columns of different lengths using numpy.savetxt in Python?

I have several lists that contain both strings and floats as their elements. import numpy as num COLUMN_1 = ['KIC 7742534', 'Variable Star of RR Lyr type' , 'V* V368 Lyr', 'KIC 7742534', ...
0
votes
1answer
32 views

Python date formatting (0/0/0000 style)

I just have a simple question, I want to print out the date in a "0/0/0000" format, but the way that it's coming out is in a "0, 0, 0000" format. How could I change this? It has to do with this part ...
2
votes
6answers
64 views

Formatting list in python

I have a list containing the numbers 25-1. I'm trying to print it out like a gameboard, where all the numbers match up: I found out how to add the lines to the list by doing this: _b = map(str, ...
-1
votes
2answers
28 views

I need \r\n instead of \n in text

When I open a file in Python and read it in I get this format: Data\r\n\r\n\t When I paste it I get text without formatting characters, which I encode like this: encoded = clipboard.encode('utf8') ...
0
votes
2answers
51 views

Formatting output python

I have some code to print a dictionary in a certain format. However as the number of channels can vary, I want to change this format. But I wonder if it can be done as an easy adjustment to what I ...
0
votes
1answer
39 views

String format a json String gives KeyError

Why does this code give a KeyError? output_format = '{ "File": "{filename}", "Success": {success}, "ErrorMessage": "{error_msg}", "LogIdentifier": "{log_identifier}" }' print ...
2
votes
1answer
24 views

Formatting a string to be a constant length in Python

Lets say I have a few string titles: title0 = 'USA' title1 = 'Canada' And I want to append a list of '#' characters to the front and back of these titles to give them a constant length so they look ...
0
votes
1answer
41 views

Break up long line of text into lines of fixed width in Python 2.7

How would I break up a long string, at the spaces where possible, inserting hyphens if not, with an indent for all lines apart from the first line? so, for a working function, breakup(): splitme = ...
0
votes
1answer
30 views

String .format() only returns first character

I have a small problem with string formatting. I want to substitute {} for answers. When I change answers, Thing will correctly store the new_answer but incorrectly print it. It will somehow only ...
1
vote
3answers
26 views

Change time format in Django Views

importdatetime in my django views to save the time in database and now = datetime.datetime.now() when i am saving its value in database it returns something like 2013-04-28 22:54:30.223113 ...
0
votes
3answers
60 views

Splitting up a text file into sets of n characters

So I have a long text file with a bunch of numbers and I want to reformat this file so that every 12 characters are on their own line, the file is 4392 characters long. My strategy was to add the ...
0
votes
1answer
59 views

Is there a way to write formatted text from Python?

If you are writing to a file with python, is there any way to make certain parts of the text bold, italic, or underlined ? i tried: test = '/location/tester.rtf' out_file = open(test,'w') ...
1
vote
0answers
35 views

How to reformat non-linear data to linear data in python?

Let me elaborate: I have a nonlinear time axis, say [2.0,5.8,8.18,16.0,32.1] (could be anything though) I have a waveform recorded at the above times, say [1,1,1,1,1,etc] I need to transfer ...
1
vote
2answers
57 views

How to parse/format a string of tuples?

I jus wrote a grade calculating program and am down to the last few lines ... I have this string of tuples : "('Jetson Elroy', '45', '88', '88', '70', 0.7253846153846155, 'C', 'Not Passible', ...
0
votes
1answer
30 views

django settings.py DATETIME_FORMAT: %M does not correspond to Minutes

according to https://docs.djangoproject.com/en/1.5/ref/settings/#datetime-input-formats the following pattern should work if I put it into settings.py and deactivate USE_L1ON '%Y-%m-%d %H:%M:%S', ...
1
vote
1answer
79 views

How to avoid a Broken Pipe error when printing a large amount of formatted data?

I am trying to print a list of tuples formatted in my stdout. For this, I use the str.format method. Everything works fine, but when I pipe the output to see the first lines using the head command a ...
0
votes
1answer
85 views

Python Fully justifying string

Does anyone have a nice concise way of fully justifying a string for a given line width like this: The cat sat on the mat, the cat sat on the mat, the cat sat on mat, the cat sat on the mat the mat, ...
1
vote
0answers
48 views

Copying formatted text from Text widget in tkinter

I'm working on an APA citation maker in Python using tkinter. I use the Text widget to display the citation once it's generated, but whenever I copy the text (using the ctrl+c shortcut, at the moment) ...
0
votes
1answer
79 views

get current month in spanish language Python

Hi i am using a variable `in my template file which gives me a current month value in english {{currentMonth}} how can i convert this into spanish language
1
vote
1answer
54 views

Python output complex line with floats colored by value

This is my first python program and my first asking a question on stack overflow so I apologize if my code is a mess and or if my question is ill-formatted. I would like to print the same line I'm ...
1
vote
1answer
47 views

How to format numbers by (several different) locales in Python 3

Is there a correct way to format numbers by locale (getting the correct decimal separator) without modifying global state? This is for text generation server-side, so setlocale is not a good idea, and ...
-1
votes
2answers
54 views

Python: Change data format to JSON [closed]

How do i change data format to JSON from python? Python script: progress = {'user': '170', 'user2': '220'} level = {'user': '10', 'user2': '14'} if progress.has_key('user'): a = progress['user'] ...
2
votes
3answers
48 views

How to write a whole string to a file in Python and where does the file go?

I am doing an assignment on text formatting and alignment (text wrapping) and I need to write my formatted string to new file. But once I have written to the file (or think I've written) where does ...
0
votes
3answers
83 views

Joining Multiple Lines in Python (Text Formatting)

I am working on pulling logs through an web API and so far when pulling the logs they return in the following format (3 events below starting with and ending with . My question is what would be the ...
2
votes
3answers
421 views

Python: not all arguments converted during string formatting

This code gives an error print('type a whole number:') n = input() if n % 2 == 1: print('Odd'); else: print('Even'); I'm assuming there's something special I have to do to variable n in the ...
2
votes
2answers
39 views

How to match a python formatstring to elements in a list?

I use Python and there's a list of file names of different file types. Text files may look like these: 01.txt 02.txt 03.txt ... Let's assume the text files are all numbered in this manner. Now I ...
3
votes
1answer
66 views

Aligning Floats to decimal points in Python 2.7 using the format() mini-language

I want to print lines so that the decimal points of the numbers align. Currently, it prints like shown below: ydisp 0.176 xdisp -0.509 and what I want is something like this ydisp ...
0
votes
1answer
104 views

Create structured list from Excel data

Hello everyone I'm using Python 2.7.3 and I'm trying to structure my output list where the data prints under each category. My data reads: ('State', 'Heart Disease Death Rate (2007)', 'Motor Vehicle ...
0
votes
2answers
88 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
6answers
108 views

python expand a list to print

If I have a list lst = ['A', 'B', 'C'] How do I expand it so that I can print something like print '%s %s %s' % (*lst) ? Thanks
1
vote
1answer
103 views

Python2.7 Generate sql query with format() and buffer object from sqlite

I try to build an sql query string with .format() and binary content (injections are no problem). The minimal example needs an example image in the same path. #!/usr/bin/python # -*- coding: utf-8 ...
0
votes
4answers
89 views

print python list with width specifiers

I'm hoping there's a better way to do this. Straight to the code: print "-I- %-6s%-6s%-6s%-6s%-6s%-6s%-6s%-6s%-8s" % \ ("A",B","C","D","E","F","G","H","% Done") print "-I- ...
1
vote
1answer
41 views

Alignment and non-default floating point representation

For my work, I often check the content of some files before beginning to use them and I began to create ipython notebooks with the checks and some pretty prints to summarize what I get. For this I ...
1
vote
3answers
70 views

Is there any simple way to add \n in r'' string in python

I need to add several paths into a single line string with a \n character at the end. For convenience, The key word r is added at the front of the string. In this case the character '\n' couldn't be ...
0
votes
2answers
91 views

Change Date Format in Django

Hi i am getting the date value from the database with the following {{request.user.date_joined}} in the following format ` Jan. 14, 2011, 6:40 a.m and i need to change the format like this ...
1
vote
2answers
83 views

Cannot Figure out how String Substitution works in Python 3.x [closed]

In python 2.x you were allowed to do something like this: >>> print '%.2f' % 315.15321531321 315.15 However, i cannot get it to work for python 3.x, I tried different things, such as ...
0
votes
2answers
89 views

Why is my string format not working?

I'm creating a jQuery function on-the-fly with python: jQuery = ("$('%(other_id)').click(function() { " " if ($(this).is(':checked')) { " " ...
0
votes
3answers
64 views

Python look for a format that match specific format

I have a list of data in CSV file. I am using loop to make them into fields... I need a code that look for a field in code that do not match this type of code "[A9]9AA9#9" Lets say "A" can be any ...
0
votes
1answer
62 views

Python IO: Reading a file using format specifier

I want to read in a text file that is very poorly made in that the values in each line are sometimes not separated by spaces or commas (so i cant use .split()). I want to read it like you would in ...
-2
votes
2answers
104 views

Format Right Justification in Python

Hey guys so I have an assignment due in my intro to Python class and my teacher noted (He hasn't explained it yet) that a certain part of the output has to be right-justified via the format() ...
0
votes
1answer
80 views

good python strategy for parsing grammar-based file format

I've written quite a few simple importers for 3D file formats like PLY and OBJ, which seem to have a very state-based per-line structure making parsing very easy. My friend wanted me to implement a ...
1
vote
1answer
45 views

Is there something like date_diff in python to get tomorrow date ?

Here's my code while x <= datetime.date.today(): print something How can I get datetime.date.tomorrow() ?
-2
votes
4answers
98 views

Best format to store data

In my program I read data from a file and then parse it. The format is data | data | data | data | data What is a better format to store data in ? It must be easily parsed by python ...
0
votes
1answer
119 views

How to set the default float format for Jinja in Flask?

I am using Jinja in Flask, I want to make all float looks like 123.45 by default in all my html page, not to keep too many digits after decimal point. I don't want to format every float one by one in ...
1
vote
1answer
73 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), ...

1 2 3 4