> For me and most of python devs, snake_case is a lot cleaner.

I think it's **objectively** worse. Compare
    
    
    my_foo_bar = await other_baz_stuff(one_thing, another_thing)
    
    
    Run

with
    
    
    myFooBar = await otherBazStuff(oneThing, anotherThing)
    
    
    Run

While it is easier with `my_foo_bar` to make out the words it consists of, it 
makes _lexing_ the code in one's head much harder. The overall readability 
decreases with underscores.

Reply via email to