0
votes
2answers
35 views
Width and Precision using *
I'm learning Python from a book and came across this example:
>>> '%f, %.2f, %.*f % (1/3.0, 1/3.0, 4, 1/3.0)
# Result: '0.333333, 0.33, 0.3333'
Don't quite understand w …
2
votes
4answers
141 views
how to store printf into a variable?
I want to store a formatted string using something similar to what printf does in C.
char *tmp = (char *)sqlite3_column_text(selectstmt, 2);
const char *sqlAnswers = printf("selec …
0
votes
2answers
33 views
Easiest way to format a number with thousand separators to an NSString according to the Locale
I can't seem to find an easy way to do it. The exact thing I need is:
[NSString stringWithFormat:@"%d doodads", n];
Where n is an int. So for 1234 I'd want this string (under my …
5
votes
3answers
123 views
C# String.Format an integer to use 1000’s separator without leading 0 for small integers
Silly question, I want to format an integer so that it appears with the 1000's separator (,), but also without decimal places and without a leading 0.
My attempts so far have been …
3
votes
1answer
95 views
How do I use TeX/LaTeX formatting for custom data tips in MATLAB?
I'm trying to annotate a polar plot with data tips labelled with 'R:...,Theta:...' where theta is actually the Greek symbol, rather than the word spelled out. I'm familiar with str …
0
votes
2answers
38 views
Python, sending command to GPIB instrument
I need to send a command to a GIPB instrument and I can do it like this: power.write("volt 0.01").
This command sets the output of my power source to 0.01V, however, I'm trying to …
2
votes
3answers
85 views
python string replacement with % character/**kwargs weirdness
Following code:
def __init__(self, url, **kwargs):
for key in kwargs.keys():
url = url.replace('%%s%' % key, str(kwargs[key]))
Throws the following exception:
File "/h …
2
votes
2answers
94 views
Python string formatting special characters.
How do you make the following code work?
example = "%%(test)%" % {'test':'name',}
print example
Where the desired output is "%name%"
Thanks
1
vote
4answers
210 views
Add comma thousand seperator to decimal (.net)
I have a decimal number, say 1234.500.
I want to get it to display 1,234.4
Im currently converting it to a double to remove the trailing '0's.
string.Format("{0:0,0}",1234.500) …
1
vote
4answers
98 views
Pythonic way to print a table
I'm using this simple function:
def print_players(players):
tot = 1
for p in players:
print '%2d: %15s \t (%d|%d) \t was: %s' % (tot, p['nick'], p['x'], p['y'], p[ …
3
votes
5answers
165 views
What is the best data type to use in order to store numbers with leading zeroes?
In Access 2003 I need to display numbers like this while keeping the leading zeroes:
080000
090000
070000
What is the best data type to use for this?
0
votes
3answers
79 views
Is there a PHP function to format a currency amount in accounting format?
I'm currently writing a report in PHP that occasionally has to display negative currency amounts. Said currency amounts are stored in the database like "-44.00". Ideally this numbe …
0
votes
4answers
121 views
std::string and format string
I found the below code through Google. It almost does what I want it to do, except it doesn't provide a way to indicate the precision like '%.*f' does in C-type format strings. Als …
1
vote
2answers
78 views
% operator in python over string
What does the following Python statement mean?
send_data=""
str_len = "%#04d" % (len(send_data)/2)
0
votes
1answer
68 views
convert .net format string to java format string
I am looking at the format specifiers of C# and the patterns for formatting numeric strings in Java.
I am wondering if anyone has any pointers as to translating from one form to …
