标签: python coding-style
我的问题很简单,使用l = list()而不是l = []是不是很糟糕的python“风格”?或者,类似地,d = dict()代替d = {}?
l = list()
l = []
d = dict()
d = {}
我个人认为编写list(),dict(),set()等更具可读性,但如果它通常被认为是编写python代码的“坏”方法,我会避免使用它。