python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Making a table in python with exact spacing
I am already sitting here, several hours, trying to figure out how to properly do this as a complete Python newbie.
I basically want to create a receipt for shopping bakery products.
However, I just c...
Daalex
Votes: 0
Answers: 0
Word Document Formatting Issue
I am currently trying to manipulate a Word file to get it in a proper format to convert it to a GIFT format. Currently, I have the document in the following form:
This is a question?
a Correct Answer
...
Ed the Analyst
Votes: 0
Answers: 1
How to format a string into a string with currency symbol and seperators
Numerical formatting of int, double, decimal can be simply achieved via using Standard Numerical Formatter for example assuming Culture is "en-GB":
int value = 1000;
Console.WriteLine(value....
User7007
Votes: 0
Answers: 1
Python Plotly - number format in hovertemplate with if...else
I would like to format the numbers in the hovertemplate according to their height like this:
2 decimal places if the number is under 10,
1 decimal place if the number is under 100,
0 decimal places i...
lasinludwig
Votes: 0
Answers: 2