alphacyberranger@lemmy.world to Programmer Humor@programming.devEnglish · 1 year agoMore the merrierlemmy.worldimagemessage-square71fedilinkarrow-up1822arrow-down18
arrow-up1814arrow-down1imageMore the merrierlemmy.worldalphacyberranger@lemmy.world to Programmer Humor@programming.devEnglish · 1 year agomessage-square71fedilink
minus-squaremashbooq@infosec.publinkfedilinkarrow-up3·1 year agoAlso me when I’m forced to write documentation for a Python function def delete_first_of_list(the_list: list):
minus-squarecoloredgrayscale@programming.devlinkfedilinkarrow-up7·1 year agoWhat if I pass an empty list, or NoneType?
minus-squareRagingRobot@lemmy.worldlinkfedilinkarrow-up5·1 year agoDoes this return a new list or modify the original? I would hope it returns a new one but I would know for sure if there was documentation.
minus-squarekablammy@sh.itjust.workslinkfedilinkarrow-up4·1 year agoI would hope it modifies the original. It’s implied in the name. A function that returns all but the first item should be named something like tail or without_first_item.
minus-squarestilgar [he/him] @infosec.publinkfedilinkarrow-up3arrow-down1·1 year agoThis is a good way to realise that you don’t need a function for that use case.
minus-squarecoloredgrayscale@programming.devlinkfedilinkarrow-up3·1 year agoIf they need it often it makes some sense, if it also perform some checks, if the list if empty or None/null.
Also me when I’m forced to write documentation for a Python function
def delete_first_of_list(the_list: list):
What if I pass an empty list, or NoneType?
Does this return a new list or modify the original? I would hope it returns a new one but I would know for sure if there was documentation.
I would hope it modifies the original. It’s implied in the name. A function that returns all but the first item should be named something like
tail
orwithout_first_item
.This is a good way to realise that you don’t need a function for that use case.
If they need it often it makes some sense, if it also perform some checks, if the list if empty or None/null.