WackyTabbacy42069@reddthat.com to Asklemmy@lemmy.ml · 1 year agoWhat's your favorite programming language and what about it do you like?message-squaremessage-square13fedilinkarrow-up10arrow-down10
arrow-up10arrow-down1message-squareWhat's your favorite programming language and what about it do you like?WackyTabbacy42069@reddthat.com to Asklemmy@lemmy.ml · 1 year agomessage-square13fedilink
minus-squarecocobean@bookwormstory.sociallinkfedilinkEnglisharrow-up0·1 year agoI had to use Python for a bit at work and it was confusing pipenv, venv, virtualenv, poetry…wtf is all this shit a.b vs a['b'] vs a.get('b')…wtf is a KeyError
minus-squarerichieadler@lemmy.myserv.onelinkfedilinkEnglisharrow-up1·1 year agoWhat happens in other languages you use when you try to access a non-existing key for a hash/map/dict? What language do you use that accessing an object attribute is the same that accessing a dict key? What knowledge do you have (or not) that KeyError is a mistery to you?
I had to use Python for a bit at work and it was confusing
pipenv, venv, virtualenv, poetry…wtf is all this shit
a.b
vsa['b']
vsa.get('b')
…wtf is a KeyErrorWhat happens in other languages you use when you try to access a non-existing key for a hash/map/dict?
What language do you use that accessing an object attribute is the same that accessing a dict key?
What knowledge do you have (or not) that KeyError is a mistery to you?