我遇到过很多情况,例如
while(len(somelists) > 0):
somelist = somelists.pop() # prob not the best example
...
这经常让我在阅读代码时感到困惑,因为我最终错过了那个 s。
由于我经常在许多语言中看到这一点,我只是想知道这实际上是一个好的命名约定吗?
我遇到过很多情况,例如
while(len(somelists) > 0):
somelist = somelists.pop() # prob not the best example
...
这经常让我在阅读代码时感到困惑,因为我最终错过了那个 s。
由于我经常在许多语言中看到这一点,我只是想知道这实际上是一个好的命名约定吗?