DEV Community

Discussion on: JavaScript developers, what was it like to start learning Python?

Collapse
 
srleyva profile image
Stephen Leyva (He/Him) • Edited

My take on python is it’s easy to learn, hard to master. I find the idioms and features take a while to learn. Example is array[-1] returning the last item in an array. In most languages this is an out of range exception but in python it’s the pythonic way t retrieve the last item. There’s typically only one obvious way to do something but it’s not always so obvious. 😂😂