DEV Community

Discussion on: What is the most confusing thing to you in Python?

Collapse
 
grahamlyons profile image
Graham Lyons

When I first started writing Python I couldn't get over the lack of braces. Having written a lot of Ruby and read a lot of unreadable Perl I now think it's a great feature. Readability as a language feature!

Collapse
 
kajigga profile image
Kajigga

I also had a challenge with it until I realized that I basically indented this way anyways with other languages for readability. I am now to the point that all the extra stuff just feels like noise. I have to do a fair amount of JS and I feel like I have to make an effort to ignore all the brackets and semicolons.