▲ 1320 ▼ The lengths we have to go to (sh.itjust.works) submitted 2 years ago by alphacyberranger@sh.itjust.works to c/programmer_humor@programming.dev 124 comments fedilink hide all child comments
[–] realaether@lemmy.world 1 point 2 years ago* (1 child) Please elaborate (eg which standard is this defined in?) permalink fedilink source parent hideshow 2 child comments replies: [–] Jakylla@sh.itjust.works 1 point 2 years ago* (last edited 2 years ago) (1 child) Not any standard (and actually not at all something to do for real), but try it, it works def magic(a, b, c): if a > 0: if b > 0: if c > 0: return 'All positive' return 'Not all positive' print(magic(1,2,3)) print(magic(-1,1,2)) print(magic(1,-1,0)) print(magic(-1,-1,-2)) (you should be able to verify I used both tab and spaces f*cking bad way in this example, like I described) Output: All positive Not all positive Not all positive Not all positive ** Process exited - Return Code: 0 ** Press Enter to exit terminal permalink fedilink source parent hideshow 2 child comments replies: [–] realaether@lemmy.world 2 points 2 years ago That's really interesting. So does that mean the interpreter just checks whether the current line is more indented, less indented, or equal vs. the preceding, without caring by how much? permalink fedilink source parent
[–] Jakylla@sh.itjust.works 1 point 2 years ago* (last edited 2 years ago) (1 child) Not any standard (and actually not at all something to do for real), but try it, it works def magic(a, b, c): if a > 0: if b > 0: if c > 0: return 'All positive' return 'Not all positive' print(magic(1,2,3)) print(magic(-1,1,2)) print(magic(1,-1,0)) print(magic(-1,-1,-2)) (you should be able to verify I used both tab and spaces f*cking bad way in this example, like I described) Output: All positive Not all positive Not all positive Not all positive ** Process exited - Return Code: 0 ** Press Enter to exit terminal permalink fedilink source parent hideshow 2 child comments replies: [–] realaether@lemmy.world 2 points 2 years ago That's really interesting. So does that mean the interpreter just checks whether the current line is more indented, less indented, or equal vs. the preceding, without caring by how much? permalink fedilink source parent
[–] realaether@lemmy.world 2 points 2 years ago That's really interesting. So does that mean the interpreter just checks whether the current line is more indented, less indented, or equal vs. the preceding, without caring by how much? permalink fedilink source parent