{"id":23871,"date":"2021-10-05T20:29:07","date_gmt":"2021-10-05T14:59:07","guid":{"rendered":"https:\/\/python-programs.com\/?p=23871"},"modified":"2021-11-22T18:33:25","modified_gmt":"2021-11-22T13:03:25","slug":"python-program-for-set-clear-method","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-for-set-clear-method\/","title":{"rendered":"Python Program for Set clear() Method"},"content":{"rendered":"

Python set:<\/strong><\/p>\n

Python set is a list of items that are not ordered. \u2013 Each element in the set must be unique and immutable, and duplicate elements are removed from the sets. Sets are mutable, which means they can be changed after they have been created.<\/p>\n

The elements of the set, unlike other Python sets, do not have an index, which means we cannot access any element of the set directly using the index. To get the list of elements, we can either print them all at once or loop them through the collection.<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given set = {'hello', 'this', 'is', 'btechgeeks'}<\/pre>\n

Output:<\/strong><\/p>\n

The given set is :\r\n{'this', 'btechgeeks', 'is', 'hello'}\r\nThe given set after clearing all the values :\r\nset()<\/pre>\n

Explanation:<\/strong><\/p>\n

Here all the values of the given set got cleared using the clear() function.<\/pre>\n

Example2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given set = {'good', 'morning', 'btechgeeks'}<\/pre>\n

Output:<\/strong><\/p>\n

The given set is :\r\n{'morning', 'btechgeeks', 'good'}\r\nThe given set after clearing all the values :\r\nset()<\/pre>\n

Explanation:<\/strong><\/p>\n

Here all the values of the given set got cleared using the clear() function.<\/pre>\n

Program for Set clear() Method in Python<\/h2>\n