On 9 Lut, 06:29, Michael Hrivnak wrote:
> Your function only works if n is an integer. Example:
>
> >>> num_digits(234)
> 3
> >>> num_digits(23.4)
>
> 325
>
> When doing integer division, python will throw away the remainder and
> return an int. Using your example of n==44, 44/10 == 4 and 4/10 =
On Dec 4, 10:42 pm, Jorge Biquez wrote:
> Hello all.
>
> Newbie question. Sorry.
>
> As part of my process to learn python I am working on two personal
> applications. Both will do it fine with a simple structure of data
> stored in files. I now there are lot of databases around I can use
> but I
On 1 July, 09:31, luca72 wrote:
> On 1 Lug, 10:16, Mithrandir
> wrote:
>
>
>
>
>
> > luca72 wrote in news:abfb7720-6132-4b7b-8084-
> > 5c1a48164...@y11g2000yqm.googlegroups.com:
>
> > > hello
> > > with webbrowser i open the html or php etc page, how i can save the
> > > opened page with python?