Peter Otten <__pete...@web.de> wrote:
>
> >>> 1 .conjugate()
>

This is a syntax I never noticed before. My built-in complier (eyes)
took one look and said: "that doesn't work." Has this always worked in
Python but I never noticed? I see other instance examples also work.

  >>> '1' .zfill(2)
  '01'
  >>> 1.0 .is_integer()
  True

and properties

  >>> 1.0 .real
  1.0

Curiously, this works

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to