Hi,
Are there equivalent in any Python libraries that could match function
like PMT in libreoffice?
Refer: https://help.libreoffice.org/Calc/Financial_Functions_Part_Two#PMT
--
Amachu
--
http://mail.python.org/mailman/listinfo/python-list
On Friday 05 April 2013 10:48 AM, Ned Deily wrote:
> You can also get the up-to-date source of the documentation set for each
> Python release branch from the Mercurial source repositories.
I was able to that. Thanks for all the responses.
--
http://mail.python.org/mailman/listinfo/python-list
Thanks.
Will it be possible to get the sphinx source?
On Friday 05 April 2013 06:01 AM, rh wrote:
> 1. wget -q http://docs.python.org/2/archives/python-2.7.3-docs-html.tar.bz2
> 2. unroll
> 3. cd python-2.7.3-docs-html
> 4. python -m SimpleHTTPServer 9292
> 5. point browser to 0:9292
>
>
--
htt
I am looking forward to checkout all rst files of docs.python.org to my
local for having a local copy of the site for quick reference.
I couldn't find it immediately, searching for few minutes now. Any
pointers?
--
Sri Ramadoss M
--
http://mail.python.org/mailman/listinfo/python-list
On Saturday 30 March 2013 03:14 PM, Peter Otten wrote:
> style = xlwt.XFStyle()
> style.num_format_str = "0.00"
Yes. That was really helpful & what I expected.
Thank you.
--
http://mail.python.org/mailman/listinfo/python-list
On Saturday 30 March 2013 02:58 PM, Roland Mueller wrote:
>
>
>
> I assume you have a numeric value a and want to have a float with 2
> decimals. This can be achieved with the function round():
But I need 10.00 and not 10.0
--
http://mail.python.org/mailman/listinfo/python-list
Consider the scenario,
>> a = 10
>> "{0:.2f}".format(a)
'10.00'
This returns a string 10.00. But what is the preferred method to retain
10.0 (float) as 10.00 (float)?
I am trying to assign the value to a cell of a spreadsheet, using
python-xlwt. I would like to have 10.00 as the value that is ri