i++ in Python?

Skip Montanaro skip at pobox.com
Thu Jul 18 18:53:17 EDT 2002


    otis> How does one do something like this in Python:

    otis>     i = j++

That would be

    i = j
    j += 1

-- 
Skip Montanaro
skip at pobox.com
consulting: http://manatee.mojam.com/~skip/resume.html





More information about the Python-list mailing list