Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 1
    On my computer, typing python takes nearly two seconds to start. Rather annoying if you just want to do something simple like 2+2. Commented Mar 11, 2011 at 7:14
  • use python3 if you don't want float rounding. e.g. 2 / 30 (python: 0) (python3: 0.06666666666666667)
    – hrvoj3e
    Commented Aug 28, 2018 at 11:52
  • and if you only have python3 installed, but want rounding, use 2//30 or int(2/30)
    – mazunki
    Commented Sep 8, 2019 at 16:32