265
        you are viewing a single comment's thread
view the rest of the comments
    
  
  
    view the rest of the comments
        this post was submitted on 23 May 2024
        
  
      
  
      265 points (91.5% liked)
      Programmer Humor
    27113 readers
  
      
      1538 users here now
  
      Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
        founded 2 years ago
      
  
  
      MODERATORS
      
  
     
            
          
No it’s how Python wants you to format. Many times I want to separate two logical sections in one function and can’t coz Python go crazy
Can you give a concrete example? Because I don't understand what you mean.
Just put them in separate functions. If you have too many levels of indent, your code is convoluted. Sticking to the line length limit sometimes forces you to write more lines than you'd like to. But it makes everything so much more readable that it's 100% worth the trade off
What if the logic is more readable in one function?
I use whitespace to make my code more legible, python forces more whitespace consistency but it comes at the cost of limiting the legibility.
Are you saying that you want to separate your two logical sections by having different levels of indentation and that’s what makes Python go crazy?