OneBug This week's bugs
Spot the bug Python
1
# Show each uploaded report by its bare name, extension dropped.
2
def display_name(filename):
3
    name = filename.strip(".txt")
4
    return name.capitalize()
5
 
6
for f in ["net.txt", "tax2026.txt", "transit.txt"]:
7
    print(display_name(f))
8
# expected: Net, Tax2026, Transit
9
# actual:   Ne, Ax2026, Ransi  (!)

Read the full write-up for this bug (spoilers)