本文介绍了空集文字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
[]
=空的list
()
=空的tuple
{}
=空的dict
是否有类似的符号表示空的set
?还是我必须写set()
?
Is there a similar notation for an empty set
?Or do I have to write set()
?
推荐答案
不,空集没有文字语法.您必须写set()
.
No, there's no literal syntax for the empty set. You have to write set()
.
这篇关于空集文字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!