Current Course: https://app.dataquest.io/m/352/object-oriented-python/3/defining-a-class
I was going through the above lesson and learned about case conventions.
I saw that snake(this_that) is used for variables and functions. I realized that at least DataQuest was using this way to name things, I just didn’t realize it was actually called something.
Whenever I code outside of the normal python answer checking screen I pretty much just always capitalized the first letter of each word(Pascal) instead of using underscores because for me, it is faster for me to type that way.
.
Would that become an issue later in terms of working with teams etc?
Should I keep towards the traditional conventions like using Snake Case for variables and using Pascal for classes? Or is it okay for me to just name everything using Pascal?