Skip to main content
added 83 characters in body
Source Link
Peilonrayz Mod
  • 44.6k
  • 33
  • 78
  1. We don't really allow canonical question and answers. If you want to highlight something you can't whip up some example code and post a Q&A.

    Bit annoying, but it will prevent a wave of crap on the site.

    We were going to share common improvements on GitHub. But we've not got much there.

  2. Explaining everything is long. And I don't think many people wanteveryone wants to know why.

    And so I've stopped explaining why as much any more. And I've had maybe one comment askinguser ask me to provide why something does something. At which point, and so I add the why to the answer the why. Leading to a somewhat 'lazy' answer.

    I may be writing some poorer answer due to this, howevernot explaining why. And so if you merge this with (1) you could just include a link to the information why, and not suffer any reduction in quality in your answers.


I now write answers more like:

  1. Follow PEP8.
  2. Don't have bare excepts.
  3. Use with when using open.
with open('file', 'w') as f:
    try:
        f.write(1 / int(input()))
    except ZeroDivisionError:
        print("Zero can't be the denominator of a fraction.")
  1. We don't really allow canonical question and answers. If you want to highlight something you can't whip up some example code and post a Q&A.

    Bit annoying, but it will prevent a wave of crap on the site.

    We were going to share common improvements on GitHub. But we've not got much there.

  2. Explaining everything is long. And I don't think many people want to know why.

    I've stopped explaining why as much any more. And I've had maybe one comment asking why something does something. At which point I add to the answer the why.

    I may be writing some poorer answer due to this, however if you merge this with (1) you could just include a link to the information why.


I now write answers more like:

  1. Follow PEP8.
  2. Don't have bare excepts.
  3. Use with when using open.
with open('file', 'w') as f:
    try:
        f.write(1 / int(input()))
    except ZeroDivisionError:
        print("Zero can't be the denominator of a fraction.")
  1. We don't really allow canonical question and answers. If you want to highlight something you can't whip up some example code and post a Q&A.

    Bit annoying, but it will prevent a wave of crap on the site.

    We were going to share common improvements on GitHub. But we've not got much there.

  2. Explaining everything is long. And I don't think everyone wants to know why.

    And so I've stopped explaining why as much any more. I've had maybe one user ask me to provide why, and so I add the why to the answer. Leading to a somewhat 'lazy' answer.

    I may be writing some poorer answer due to not explaining why. And so if you merge this with (1) you could just include a link to the information why, and not suffer any reduction in quality in your answers.


I now write answers more like:

  1. Follow PEP8.
  2. Don't have bare excepts.
  3. Use with when using open.
with open('file', 'w') as f:
    try:
        f.write(1 / int(input()))
    except ZeroDivisionError:
        print("Zero can't be the denominator of a fraction.")
added 2 characters in body
Source Link
200_success
  • 145.7k
  • 4
  • 114
  • 284
  1. We don't really allow conicalcanonical question and answers. If you want to highlight something you can't whip up some example code and post a Q&A.

    Bit annoying, but it will prevent a wave of crap on the site.

    We were going to share common improvements on GitHub. But we've not got much there.

  2. Explaining everything is long. And I don't think many people want to know why.

    I've stopped explaining why as much any more. And I've had maybe one comment asking why something does something. At which point I add to the answer the why.

    I may be writing some poorer answer due to this, however if you merge this with (1) you could just include a link to the information why.


I now write answers more like:

  1. Follow PEP8.
  2. Don't have bare excepts.
  3. Use with when using open.
with open('file', 'w') as f:
    try:
        f.write(1 / int(input()))
    except ZeroDivisionError:
        print("Zero can't be the denominator of a fraction.")
  1. We don't really allow conical question and answers. If you want to highlight something you can't whip up some example code and post a Q&A.

    Bit annoying, but it will prevent a wave of crap on the site.

    We were going to share common improvements on GitHub. But we've not got much there.

  2. Explaining everything is long. And I don't think many people want to know why.

    I've stopped explaining why as much any more. And I've had maybe one comment asking why something does something. At which point I add to the answer the why.

    I may be writing some poorer answer due to this, however if you merge this with (1) you could just include a link to the information why.


I now write answers more like:

  1. Follow PEP8.
  2. Don't have bare excepts.
  3. Use with when using open.
with open('file', 'w') as f:
    try:
        f.write(1 / int(input()))
    except ZeroDivisionError:
        print("Zero can't be the denominator of a fraction.")
  1. We don't really allow canonical question and answers. If you want to highlight something you can't whip up some example code and post a Q&A.

    Bit annoying, but it will prevent a wave of crap on the site.

    We were going to share common improvements on GitHub. But we've not got much there.

  2. Explaining everything is long. And I don't think many people want to know why.

    I've stopped explaining why as much any more. And I've had maybe one comment asking why something does something. At which point I add to the answer the why.

    I may be writing some poorer answer due to this, however if you merge this with (1) you could just include a link to the information why.


I now write answers more like:

  1. Follow PEP8.
  2. Don't have bare excepts.
  3. Use with when using open.
with open('file', 'w') as f:
    try:
        f.write(1 / int(input()))
    except ZeroDivisionError:
        print("Zero can't be the denominator of a fraction.")
Source Link
Peilonrayz Mod
  • 44.6k
  • 33
  • 78

  1. We don't really allow conical question and answers. If you want to highlight something you can't whip up some example code and post a Q&A.

    Bit annoying, but it will prevent a wave of crap on the site.

    We were going to share common improvements on GitHub. But we've not got much there.

  2. Explaining everything is long. And I don't think many people want to know why.

    I've stopped explaining why as much any more. And I've had maybe one comment asking why something does something. At which point I add to the answer the why.

    I may be writing some poorer answer due to this, however if you merge this with (1) you could just include a link to the information why.


I now write answers more like:

  1. Follow PEP8.
  2. Don't have bare excepts.
  3. Use with when using open.
with open('file', 'w') as f:
    try:
        f.write(1 / int(input()))
    except ZeroDivisionError:
        print("Zero can't be the denominator of a fraction.")