Timeline for Interpret DOGO!
Current License: CC BY-SA 3.0
13 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| May 5, 2016 at 10:34 | history | edited | Blue | CC BY-SA 3.0 |
added 51 characters in body
|
| May 5, 2016 at 10:28 | history | edited | Blue | CC BY-SA 3.0 |
added 71 characters in body
|
| May 5, 2016 at 10:18 | history | edited | Blue | CC BY-SA 3.0 |
added 97 characters in body
|
| May 5, 2016 at 10:14 | comment | added | Blue | @KevinLau-notKenny wow, I had no idea the inversion operator could do that! Thanks! | |
| May 5, 2016 at 5:32 | comment | added | Value Ink |
[0]*256 generates the tape in much fewer bytes than your range trick. Also, -~p%256 saves 2 bytes over (p+1)%256, and same with ~-p%256 for (p-1)%256
|
|
| May 5, 2016 at 2:46 | history | edited | Blue | CC BY-SA 3.0 |
added 102 characters in body
|
| May 5, 2016 at 2:40 | history | edited | Blue | CC BY-SA 3.0 |
changed to Python 3; added 54 characters in body
|
| May 5, 2016 at 2:36 | comment | added | Riker | Then maybe try ideone or a online python interpreter for that. Or install it. :P | |
| May 5, 2016 at 2:35 | comment | added | Blue | @EᴀsᴛᴇʀʟʏIʀᴋ I was too lazy to install it. I might as well change the answer, tho | |
| May 5, 2016 at 2:34 | comment | added | Riker |
What makes python3 out of the question? Just tested, works fine with print(...,end='')
|
|
| May 5, 2016 at 2:34 | comment | added | Blue | @EᴀsᴛᴇʀʟʏIʀᴋ print adds newlines. the actual print function with the end arg is in Python 3 | |
| May 5, 2016 at 2:33 | comment | added | Riker |
Why use sys.stdout.write? Why not print?
|
|
| May 5, 2016 at 2:31 | history | answered | Blue | CC BY-SA 3.0 |