标签: python coding-style naming-conventions camelcasing
让我们假设OSCClient是一个类,我希望类的实例以小写字母开头:
oSCClient = OSCClient() # ew!
编辑:我问过这个问题是因为pep 8说:“在CapWords中使用缩写时,请将缩写的所有字母大写。因此,HTTPServerError优于HttpServerError。”
答案 0 :(得分:2)
我用
oscClient = OSCClient() # yey