DEV Community

Discussion on: BLACK-JACK with Python

Collapse
 
iceorfiresite profile image
Ice or Fire

You shouldn't use variable names like "a" because they aren't descriptive and they aren't pythonic. It's a good start in OOP. Keep at it!

Collapse
 
himan10 profile image
Himanshu Bhatnagar

Thanks for the suggestion man, yeah I checked with pylint too it showed me the same warning which you mentioned above.
I edited my code and changed every variable which looks like "a" or "b" to snake_case.