當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Set clear()用法及代碼示例


clear() 方法從集合中刪除所有元素。

用法:

set.clear()

參數:

clear() 方法不帶任何參數。

返回:

clear() 方法不返回任何值並返回 None

示例 1:使用 clear() 從 Python 集中刪除所有元素

# set of vowels
vowels = {'a', 'e', 'i', 'o', 'u'}
print('Vowels (before clear):', vowels)

# clearing vowels
vowels.clear()
print('Vowels (after clear):', vowels)

輸出

Vowels (before clear): {'e', 'a', 'o', 'u', 'i'}
Vowels (after clear): set()

相關用法


注:本文由純淨天空篩選整理自 Python Set clear()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。