Timeline for Console-based hangman in Python
Current License: CC BY-SA 4.0
12 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Jan 7, 2020 at 14:25 | vote | accept | Roddy of the Frozen Peas | ||
| Jan 6, 2020 at 19:53 | comment | added | Roddy of the Frozen Peas |
@Voo thanks for the suggestion, I will look into it. I was intending to look into an equivalent to Java's equalsIgnoreCase() and this sounds like a step in the right direction
|
|
| S Jan 6, 2020 at 17:14 | history | suggested | AncientSwordRage | CC BY-SA 4.0 |
unnecessary to specify previous language knowledge in title
|
| Jan 6, 2020 at 16:49 | comment | added | Nathan | To help with formatting issues like consistency in single or double quotes, I like to use black (other similar tools exist in Python as well). Combined with, e.g., precommit, this will handle a lot of little formatting things automatically whenever you commit. | |
| Jan 6, 2020 at 16:03 | review | Suggested edits | |||
| S Jan 6, 2020 at 17:14 | |||||
| Jan 6, 2020 at 13:12 | comment | added | Voo |
Using upper or lower for case insensitive string comparisons is as bad a practice in Python as it is in Java, although admittedly Python makes it unnecessarily hard to do it correctly. You want to use str.casefold().
|
|
| Jan 6, 2020 at 2:18 | answer | added | Acccumulation | timeline score: 3 | |
| Jan 5, 2020 at 15:00 | history | tweeted | twitter.com/StackCodeReview/status/1213837704250757120 | ||
| Jan 5, 2020 at 14:15 | answer | added | Barb | timeline score: 6 | |
| Jan 5, 2020 at 14:12 | history | became hot network question | |||
| Jan 5, 2020 at 10:04 | answer | added | Peilonrayz♦ | timeline score: 22 | |
| Jan 5, 2020 at 6:08 | history | asked | Roddy of the Frozen Peas | CC BY-SA 4.0 |